while True: a=(input('摄氏转华氏请按 1\n华氏转摄氏请按 2\n退出请按 3\n')) if a=='1': c=input('请输入摄氏温度:') f=float(c)*9/5+32 print('{}摄氏温度转为华氏温度是{}'.format(c,f)) elif a== ...
分类:
其他好文 时间:
2018-04-26 01:20:37
阅读次数:
127
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,... ...
分类:
其他好文 时间:
2018-04-26 01:18:54
阅读次数:
142
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-26 01:18:26
阅读次数:
148
a=input('请输入第一个数:') b=input('请输入第二个数:') sum2=int(a)+int(b) print('两个数的和是:{}'.format(sum2)) a=input('请输入华氏温度:') sum=int(a)*5/9+32 print('摄氏度:{}'.format... ...
分类:
其他好文 时间:
2018-04-26 01:15:42
阅读次数:
82
c= input('请输入摄氏温度') f= float(c)*9/5+32 print('{}摄氏温度转为华氏温度{}'.format(f,c)) ...
分类:
其他好文 时间:
2018-04-26 01:15:22
阅读次数:
140
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:10:34
阅读次数:
171
while True: a = input('1.摄氏转华氏 \n 2.华氏转摄氏') if a =='1': c=input('请输入摄氏温度:') f=float('{}摄氏温度转为华氏温度是{}'.format(c,'f'))*9/5+32 print(f) elif: a =='2': f ... ...
分类:
其他好文 时间:
2018-04-26 01:10:16
阅读次数:
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-26 01:07:27
阅读次数:
171
a=input('请输入华氏温度') sum2=int(a)*5/9-32print('转换的摄氏温度是;{}'.format(sum2)) a=input('请输入摄氏温度') sum2=int(a)*5/9+32print('转换的华氏温度是;{}'.format(sum2)) ...
分类:
其他好文 时间:
2018-04-26 01:06:48
阅读次数:
156
while True: a = input('摄氏转华氏按1 华氏转摄氏按2') if a == '1': #输入 c = input('请输入摄氏温度:') #计算 f = float(c)*9/5+32 #输出 print('{}摄氏度转华氏度为{}' .format(c,f)) elif a= ...
分类:
其他好文 时间:
2018-04-26 01:06:38
阅读次数:
160