2022-06-20|閱讀時間 ‧ 約 1 分鐘

PYTHON程式練習題

    BMI計算機

    height="H"
    weight="W"
    H=input("請輸入你的身高(公尺):")
    W=input("請輸入你的體重:")
    BMI=float(W)/(float(H)*float(H))  #輸入後為文字,需轉為數字型態
    BMI=round(BMI,2)  #取小數2位
    print('你的BMI是{}'.format(BMI))

    圓面積計算機

    radius="R"
    pi=float("3.14")
    R=float(input("請輸入半徑:"))
    arer=R*R*pi
    print("圓面積為{}".format(arer))

    攝氏華式溫度轉換

    c = input("請輸入攝氏溫度:",)
    f = (9/5)*int(c)+32
    print("轉換成華氏溫度為",end="")
    print(f)
    分享至
    成為作者繼續創作的動力吧!
    © 2024 vocus All rights reserved.