1. 程式人生 > >華氏攝氏同時轉換

華氏攝氏同時轉換

for image col 圖片 NPU input 溫度 輸入 技術分享

while True:
    a = int(input( 攝氏度轉華氏度請按 1\n 華氏度轉攝氏度請按 2\n 退出請按 3\n))
    if a == 1:
        c=float(input(請輸入攝氏溫度:))
        f=c*9/5+32
        input({:.2f}°C轉換成華氏度為{:.2f}°F.format(c,f))
    elif a==2:
        f=float(input(請輸入華氏溫度:))
        c=5/9*(f-32)
        print({:.2f}°F轉換成攝氏度為{:.2f}°C
.format(f,c)) else: break

技術分享圖片

華氏攝氏同時轉換