第18533题 单选
以下Python程序的运行结果是什么?
a=80
b=70
if a>b:
    a,b=b,a
    print(a,b)
A

70 70

B

80 70

C

70 80

D

80 80

程序运行统计
暂无判题统计
提交0次 正确率0.00%
答案解析