摄氏华氏转换

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:
    f = float(input('请输入华氏温度:'))
    c = 5/9*(f-32)
    print('{:.2f}°F转换为摄氏温度为{:.2f}°C'.format(f,c))

posted @ 2018-04-25 21:03  刘海茵  阅读(365)  评论(0编辑  收藏  举报