a=input('请输入第一个数:') b=input('请输入第二个数:') sum2=int(a)+int(b) print('两个数的和是: {} '.format(sum2)) a=input('请输入摄氏度:') sum=int(a)*5/9+32 print('华氏温度: {} '.fo... ...
分类:
其他好文 时间:
2018-04-26 01:01:30
阅读次数:
161
while True: a = int(input('摄氏温度转换为华氏温度请按 1\n华氏温度转化为摄氏温度请按 2\n退出请按 3\n')) if a==1: c = float(input('请输入摄氏温度:')) f = (c)*9/5+32 print('摄氏{:.2f}温度转为华氏温度是 ...
分类:
其他好文 时间:
2018-04-26 00:57:53
阅读次数:
264
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-26 00:57:19
阅读次数:
186
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-26 00:56:53
阅读次数:
160
while True: a = int(input('摄氏温度转换为华氏温度请按 1\n华氏温度转化为摄氏温度请按 2\n退出请按 3\n')) if a==1: c = float(input('请输入摄氏温度:')) f = (c)*9/5+32 print('摄氏{:.2f}温度转为华氏温度是 ...
分类:
其他好文 时间:
2018-04-26 00:54:19
阅读次数:
177
while True: a = int(input('摄氏温度换为华氏温度请按 1\n华氏温度转为摄氏温度请按 2\n退出请按 3\n')) if a==1: c = float(input('请输入摄氏温度:')) f = (c)*9/5+32 print('摄氏{:.2f}温度转为华氏温度是{: ...
分类:
其他好文 时间:
2018-04-26 00:54:04
阅读次数:
254
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:15:43
阅读次数:
308
a=input('请输入第一个数:') b=input('请输入第二个数:') sum2=int(a)+int(b) print('两个数的和是:'.format(sum2)) a=input('请输入一个摄氏度:') sum2=int(a)*9/5+32 print('转换的华氏温度是:{}'.f... ...
分类:
其他好文 时间:
2018-04-25 22:15:01
阅读次数:
333
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:14:52
阅读次数:
305
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:13:30
阅读次数:
176