0
Как создать калькулятор имт? how to create a BMI calculator?
5 Respuestas
+ 3
Дружо4ек
elif bmi >= 18.5 and bmi < 25:
is the correct syntax.
See if you can fix the other error also
+ 3
m = int(input())
h = float(input())
bmi = m / (h**2)
if bmi < 18.5:
print("Underweight")
elif (bmi >= 18.5 < 25):
print ("Normal")
elif (bmi >= 25 < 30.0): print("Overweight")
else:
print("Obesity")
+ 2
Дружо4ек
Review if, elif & else statements.
Also review conditional statements,
IE: if 5>7:
do something
+ 2
Thanks
+ 1
Привет Дружочек! Покажи пожалуйста свой код