思路:输入一个华氏温度,输出摄氏温度
要求:输入输出均为整数
F_temp = int(input())
C = int(5 * (F_temp - 32)/9)
print(f"Celsius = {C}")
pat 计算华氏温度(python3)
阅读 105
2022-01-10
思路:输入一个华氏温度,输出摄氏温度
要求:输入输出均为整数
F_temp = int(input())
C = int(5 * (F_temp - 32)/9)
print(f"Celsius = {C}")
相关推荐
精彩评论(0)