2022年3月24日 星期四

python bmi

weight=int(input ("請輸入體重?公斤"))

height=int(input ("請輸入身高?公分"))

bmi=weight/(height/100*height/100)

print(bmi)

if bmi>26:

    print("太重")

elif bmi<20:

    print("空氣人")

else:

    print("正常人")

沒有留言:

張貼留言