0
my project is to create BMI calculator. What went i try code in my PC it work but in app it don't work
weight = int(input()) height = float(input()) bmi = (weight/(height**2)) if bmi<18.5: print("underwight") elif (bmi>=18.5 and bmi<25): print("normal") elif (bmi>=25 and bmi<30): print("overweight") elif (bmi>=30): print("obesilty")
3 ответов