Python 程序判断温度:输入 104 的输出结果
如下程序当输入 t 为 104 时输出:
t = int(input())
if t > 32:
print('Cool')
elif t > 86:
print('Hot')
else:
print('Freezing')
A. Cool
B. Hot
C. Freezing
D. Cool Hot Freezing
单选题,选择一个正确答案内容:B. Hot
原文地址: https://www.cveoy.top/t/topic/f07G 著作权归作者所有。请勿转载和采集!