You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
def mux4(d00, d01, d10, d11, s): # 返回选择结果
|
|
if s == '00':
|
|
return d00
|
|
elif s == '01':
|
|
return d01
|
|
elif s == '10':
|
|
return d10
|
|
else:
|
|
return d11
|