码迷,mamicode.com
首页 >  
搜索关键字:华氏温度    ( 129个结果
条件语句
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
条件语句,while循环语句:完整的温度转换程序
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循环语句:完整的温度转换程
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
条件语句,while循环语句:完整的温度转换程序
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循环语句:完整的温度转换程序
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循环语句:完整的温度转换程序
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
条件语句,while循环语句:完整的温度转换程序
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
条件语句,while循环语句:完整的温度转换程序
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
129条   上一页 1 ... 3 4 5 6 7 ... 13 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!