BMI calculator | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

BMI calculator

Output are same as expected but test shows failed... Some mistakes in my code.. Can you plz find it? https://code.sololearn.com/cwuNnKDUkEz4/?ref=app

1st May 2021, 9:49 AM
Jibin Benny
Jibin Benny - avatar
4 Answers
+ 12
weight=int(input()) height=float(input()) BMI = weight/(height**2) if BMI <= 18.5: print("Underweight") elif BMI <= 25: print("Normal") elif BMI <=30: print("Overweight") else : print("Obesity") #change the starting letters to upper case
1st May 2021, 9:55 AM
Atul [Inactive]
+ 1
#your code goes here weight = float(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') Copy and paste
19th Aug 2021, 7:15 AM
Sariga.S
0
I think it'll works: #your code goes here 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') else: print('Obesity')
11th May 2022, 5:32 PM
MYusuf
MYusuf - avatar
0
weight = float(input()) height = float(input()) bmi = weight / (height**2) if bmi < 18.5: print ("your bmi is ",bmi," you are Underweight") elif (bmi >= 18.5) and (bmi <= 25): print("your bmi is",bmi," you are Normal") elif (bmi > 25) and (bmi <= 30): print("your bmi is",bmi," you are Overweight") else: print ("obesity")
3rd Oct 2022, 10:57 PM
Godwin Zicks
Godwin Zicks - avatar