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.

10 lines
199 B

3 years ago
def mux4(d00, d01, d10, d11, s): # 返回选择结果
if s == '00':
3 years ago
return d00
3 years ago
elif s == '01':
3 years ago
return d01
3 years ago
elif s == '10':
3 years ago
return d10
else:
3 years ago
return d11