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")
3 Réponses
+ 2
# try
print ("Normal")
+ 1
Thanks, it solved.