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'. ...
分类:
其他好文 时间:
2018-04-26 01:16:09
阅读次数:
143
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
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
while True: a=input('1.摄氏度2.华氏度') if a =='1': c =input('请输入摄氏度') f =float(c)*9/5+32 print('华氏度为{}'.format(f)) elif a=='2': f = float(input('请输入华氏度')) ... ...
分类:
其他好文 时间:
2018-04-26 00:55:04
阅读次数:
235
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('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=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=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
算法中常常会到浮点数运算,而浮点数的处理常常是Verilog初学中常常遇到的问题。以下将就一个简单的例子说明Verilog中浮点数运算处理。 在JPEG图像压缩时遇到色彩空间变换的问题,将YCbCr转换到RGB会遇到浮点数的运算,这个实现复杂,以摄氏温度转换为华氏温度为例 : F = C x 1.8 ...
分类:
其他好文 时间:
2017-11-08 11:59:03
阅读次数:
234
一.实验题目,设计思路,实现方法 1.实验题目 7-7<!-- /react-text --><!-- react-text: 3687 --> <!-- /react-text --><!-- react-text: 3688 -->计算火车运行时间<!-- /react-text --><!-- ...
分类:
编程语言 时间:
2017-10-24 19:35:58
阅读次数:
1426