IMC Python | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
+ 1

IMC Python

I can't pass this exercise and I don't know why. Can you help me?? Thanks. This is my Code: #tu código va aquí x =float(input()) y =float(input()) z = x/y**2 if z < 18.5: print ("Underweight") elif z >=18.5 and z <= 24.9: print ("Normal") elif z >= 25 and z <= 29.9: print ("Overweight") else: print ("Obesity")

9th Jan 2022, 6:57 PM
Francisco José García Soto
Francisco José García Soto - avatar
2 ответов
+ 1
Can u put the question requirements to can help u ?
9th Jan 2022, 7:01 PM
Muhammad Galhoum
Muhammad Galhoum - avatar
+ 1
Fixed It by changing muy Code to this: #tu código va aquí x =float(input()) y =float(input()) z = round(x/y**2) if z < 18.5: print ("Underweight") elif z >=18.5 and z <= 25: print ("Normal") elif z >= 25 and z < 30: print ("Overweight") else: print ("Obesity")
9th Jan 2022, 7:13 PM
Francisco José García Soto
Francisco José García Soto - avatar