摘要: while True: a = int(input('摄氏温度转换为华氏温度请按 1\n华氏温度转化为摄氏温度请按 2\n退出请按 3\n')) if a==1: c = float(input('请输入摄氏温度:')) f = (c)*9/5+32 print('摄氏{:.2f}温度转为华氏温度是 阅读全文
posted @ 2018-04-25 21:37 黄雪旎 阅读(262) 评论(0) 推荐(0) 编辑
摘要: 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: 阅读全文
posted @ 2018-04-25 20:56 黄雪旎 阅读(315) 评论(0) 推荐(0) 编辑
摘要: a=input('请输入第一个数:') b=input('请输入第二个数:') sum2=int(a)+int(b) print('两个数的和是:'.format(sum2)) a=input('请输入一个摄氏度:') sum2=int(a)*9/5+32 print('转换的华氏温度是:{}'.format(sum2)) 阅读全文
posted @ 2018-04-25 20:39 黄雪旎 阅读(138) 评论(0) 推荐(0) 编辑