华氏温度与摄氏温度转换

wd=input("请输入摄氏温度:")
wd = int(wd)
hd=wd*9/5+32
#输出结果
print("摄氏温度转化为华氏温度为{}:".format(hd))

猜你喜欢

转载自www.cnblogs.com/cc013/p/9577629.html