0
Check whats wrong?
#your code goes here weight = int(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("Over weight") elif bmi >= 30: print("Obesity")
2 Antworten
+ 2
bmi >= 18.5 and bmi <= 25
bmi > 25 and bmi <= 30
Overweight
bmi > 30
+ 4
Prakash Limbu
Check your spelling in your outputs, compare them to the challenge requirements.
They MUST be exact