#用户输入数字 a = float(input(‘请输入摄氏温度:‘)) b = float(input(‘转换成华氏温度:‘)) #转换公式 d=a * 9/5 + 32 #华氏温度 c=5/9 * (b-32) #摄氏温度 #输出结果 print(‘摄氏温度{}转换为华氏温度:{}‘.format(a,d)) print(‘华氏温度{}转换为摄氏温度:{}‘.format(b,c))
原文地址:https://www.cnblogs.com/XLxielin/p/9600835.html
时间: 2024-10-31 23:09:35