0
What's wrong here?
BMI calculator in python: #your code goes here weight=int(input()) height=float(input()) BMI=weight/(height**2) if(BMI<18.5): print("Under Weight") elif(BMI>=18.5 and BMI<=25): print("Normal") elif(BMI>=25 and BMI<=30): print("Over weight") else: print("Obesity")
3 Réponses
- 1
Your output statement should exactly match the one given in the problem.
Underweight and Overweight.
0
Thankyou.. Now it's executed.
I added space b/w Underweight.