- 1
Калькулятор ИМТ
Подскажите пожалуйста, все тесты проходит, кроме Скрытого теста 2. Код вроде норм
5 Réponses
+ 6
print ("Overweight")
+ 1
Спасибо, затупил чисто на написании слова😅
0
v = int(input())
r = float(input())
imt = v/(r**2)
if imt<18.5:
print ("Underweight")
elif imt>=18.5 and imt<25:
print ("Normal")
elif imt>=25 and imt<30:
print ("Overveight")
else:
print ("Obesity")
0
weight = int (input ())
height = float (input ())
r = weight / height**2
if r < 18.5:
print ("Underweight")
elif r >= 18.5 and r < 25:
print ("Normal")
elif r == 25 or r < 30:
print ("Overweight")
elif r >= 30:
print ("Obesity")
0
weight = float(input())
lenght = float(input())
x=(weight/lenght**2)
if x<18.5:
print("Underweight")
elif 18.5<=x<25:
print("Normal")
elif 25<=x<30:
print("Owerweight")
else:
print("Obesity")
Что не так с 3тестом?