第25793题 单选
执行以下Python代码,输入1和0时的输出结果是?
a = int(input())
b = int(input())
if a and b:
    print("1")
elif not (a or b):
    print("2")
elif a or b:
    print("3")
else:
    print("4")
A

1

B

2

C

3

D

4

提交0次 正确率0.00%
答案解析