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)