1. 程式人生 > >溫度轉換

溫度轉換

pri float img div 入華 輸入 info http orm

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(input(請輸入華氏溫度:))
    c=5/9*(f-32)
    print({:.2f}攝氏溫度轉為華氏溫度{:.2f}.format(f,c))

技術分享圖片

溫度轉換