a=input('请输入华氏温度') sum2=int(a)*5/9-32 print('转换的摄氏温度是;{}'.format(sum2)) a=input('请输入摄氏温度') sum2=int(a)*5/9+32 print('转换的华氏温度是;{}'.format(sum2)) ...
分类:
其他好文 时间:
2018-04-25 22:12:52
阅读次数:
157
a=int(input('摄氏温度转为华氏温度请按1\n华氏温度转为摄氏温度请按2\n')) if a=='1': c=input('请输入摄氏温度:') f=float(c)*9/5+32 print('{}摄氏温度转为华氏温度是:{}'.format(c,f)) else: f=float(in ...
分类:
其他好文 时间:
2018-04-25 22:12:22
阅读次数:
154
a=input('1.摄氏转华氏 2.华氏转摄氏') if a =='1': f=float(input('请输入华氏温度')) c=5/9*(f-32) print('{}华氏度转为摄氏度是{}'.format(f,c)) else: c=input('请输入摄氏温度') f=float(c)*9... ...
分类:
其他好文 时间:
2018-04-25 22:11:39
阅读次数:
180
a = input('1.摄氏转华氏 2.华氏转摄氏') if a == '1': c = input('请输入摄氏温度:') f = float(c)*9/5+32 print('{}摄氏温度转为华氏温度是{}'.format(c,f)) else: f = float(input('请输入华氏温... ...
分类:
其他好文 时间:
2018-04-25 22:08:32
阅读次数:
169
a = int(input('摄氏度转换为华氏温度请按 1\n华氏温度转化为摄氏度请按 2\n')) if a == '1': c = float(input('请输入摄氏温度:')) f = c*9/5+32 print('摄氏{:.2f}的华氏为{:.2f}'.format(c,f)) else ...
分类:
其他好文 时间:
2018-04-25 22:06:51
阅读次数:
163
a=int(input ('摄氏度转换为华氏度请按 1\n华氏度转换为摄氏度请按 2\n')) if a==1: c = float(input('请输入摄氏温度:')) f = c*9/5+32 print('{:.2f}°C转换成华氏温度为{:.2f}°F'.format(c,f)) else: ...
分类:
其他好文 时间:
2018-04-25 22:06:42
阅读次数:
248
a=input('摄氏转华氏按1\n 华氏转摄氏按2\n') if a =='1': c = input('请输入摄氏度') f =float(c)*9/5+32 print('{}摄氏温度转化为华氏温度{}'.format(c,f)) else: f=float(input('请输入华氏温度: '... ...
分类:
其他好文 时间:
2018-04-25 22:02:50
阅读次数:
162
a=int(input ('摄氏度转换为华氏度请按 1\n华氏度转换为摄氏度请按 2\n')) if a==1: c = float(input('请输入摄氏温度:')) f = c*9/5+32 print('{:.2f}°C转换成华氏温度为{:.2f}°F'.format(c,f)) else: ...
分类:
其他好文 时间:
2018-04-25 22:01:00
阅读次数:
145
a = int(input('摄氏温度转换为华氏温度请按 1\n华氏温度转换为摄氏温度请按 2\n')) if a==1: c = float(input('请输入摄氏温度:')) f = c*9/5+32 print('摄氏{:.2f}的华氏为{:.2f}'.format(c,f)) else: ...
分类:
其他好文 时间:
2018-04-25 22:00:52
阅读次数:
179
摄氏温度转华氏温度 a=input('请输入摄氏温度') sum2=int(a)*5/9+32print('转换的华氏温度是;{}'.format(sum2)) 华氏温度转摄氏温度 a=input('请输入华氏温度') sum2=int(a)*5/9-32print('转换的摄氏温度是;{}'.fo ...
分类:
其他好文 时间:
2018-04-25 22:00:35
阅读次数:
161