- 1
Bmi
What's wrong with my code Can your help me? weight = float(input()) height = float(input()) bmi = weight / (height)**2 if bmi < 18.5: print("Underweight") elif (bmi>=18.5 and bmi < 25): print("Normal") elif (bmi>=25 and bmi<30): print("Overweght") else: print("Obesity")
3 ответов
+ 3
There is a typo in "Overweight"
+ 3
Great that you could solve it!
+ 1
Thank you. It works 😅