0

Help me please. What is the problem with this BMI Calculator?

weight=int(input()) height=float(input()) BMI=weight/height**2 if BMI<18.5: print("Underweight") elif BMI<25: print("normal") elif BMI<30: print("Overweight") else: print("Obesity")

28th Dec 2021, 9:45 AM
Khayyam Mo
3 Réponses
+ 2
# try print ("Normal")
28th Dec 2021, 10:04 AM
SoloProg
SoloProg - avatar
+ 1
Thanks, it solved.
28th Dec 2021, 5:18 PM
Khayyam Mo