while True: a = input('1:摄氏转华氏\n2:华氏转摄氏\n3:退出\n') if a =='1': celsius = float(input('输入摄氏温度: ')) fahrenheit = (celsius * 9/5) + 32 print('{:.2f}摄氏温度转为... ...
分类:
其他好文 时间:
2018-04-28 16:49:49
阅读次数:
114
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(inpu ...
分类:
其他好文 时间:
2018-04-26 01:32:47
阅读次数:
193
while True: a =int(input('摄氏温度转换为华氏温度请按 1\n华氏温度转换为摄氏温度请按 2\n')) if a==1: c = float(input('请输入摄氏温度:')) f = c*9/5+32 print('摄氏{:.2f}的华氏为{:.2f}'.format(c... ...
分类:
其他好文 时间:
2018-04-26 01:31:53
阅读次数:
189
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 01:31:03
阅读次数:
174
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-26 01:27:46
阅读次数:
135
while True: a = int(input('摄氏温度转化为华氏温度请按1\n华氏温度转化为摄氏温度请按2\n')) if a==1: c = float (input('请输入摄氏温度:')) f = c*9/5+32 print('摄氏{:.2f}的华氏为{:.2f}'.format(c... ...
分类:
其他好文 时间:
2018-04-26 01:26:06
阅读次数:
102
while True: a = int(input('摄氏转华氏请按 1\n华氏转摄氏请按 2\n退出请按3\n')) if a==1: c = float(input('请输入摄氏度:')) f = c*9/5+32 print('摄氏{:.2f}的华氏为{:.2f}\n'.format(c,f)... ...
分类:
其他好文 时间:
2018-04-26 01:24:10
阅读次数:
148
while True: a =int(input('摄氏温度转换为华氏温度请按1\n华氏温度转化为摄氏温度请按2\n退出请按3\n')) if a==1: c=float(input('请输入摄氏温度:')) f=c*9/5+32 print('摄氏{:.2f}的华氏为{:.2f}\n'.forma ...
分类:
其他好文 时间:
2018-04-26 01:23:15
阅读次数:
110
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-26 01:22:24
阅读次数:
126
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(inpu ...
分类:
其他好文 时间:
2018-04-26 01:21:27
阅读次数:
101