摘要: while True : a= int (input ('摄氏温度转化为华氏温度输入: 1\n华氏温度转化为摄氏温度输入: 2\n')) if a==1 : ss = float(input('输入摄氏温度:')) b = ss*1.8+32 print('华氏温度为:{:.2f}'.format(b)) elif a == 2: ss... 阅读全文
posted @ 2018-09-10 11:11 DT_TD 阅读(250) 评论(0) 推荐(0) 编辑