0
I want to solve the bmi calculator plaise guys help me
Coding
2 Respostas
+ 1
Hi! Please, show us your attempt!
0
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("Overweight")
elif BMI >= 30:
print("Obesity")