python 80分,求解
查看原帖
python 80分,求解
1807170
Tom_yun楼主2025/7/21 18:52
s = input().split()
s1 = 0
for i in s:
    if int(i) > 60:
        s1 += 1
if s1 == 1:
    print('1')
else:
    print('0')
2025/7/21 18:52
加载中...