摘要:
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('请输入华氏度')) ... 阅读全文
posted @ 2018-04-25 21:29
谢斐
阅读(121)
评论(0)
推荐(0)