Plase help me in BMI Calculator | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Plase help me in BMI Calculator

4th Apr 2021, 10:57 AM
hossein abazary
hossein abazary - avatar
6 Answers
+ 2
Show your code first then we can help you.
4th Apr 2021, 10:59 AM
TOLUENE
TOLUENE - avatar
+ 1
While printing , match the case as required in description. "Underweight" capital U,.. "Normal" , "Overweight" , "Obesity"..
4th Apr 2021, 12:01 PM
Jayakrishna 🇮🇳
+ 1
C ++ int w , h ; cin >> w ; cin >> h ; int BMI = w / (h * h); If (BMI < 18.5){ cout << "Underweight" << endl; } else if ( BMI >= 18.5 && BMI < 25){ cout << " Normal" << endl; else if ( BMI >= 25 && BMI < 30){ cout << " Overweight" << endl ; else { cout << "Obesity" << endl ;
4th Apr 2021, 12:15 PM
Victor Okereafor
Victor Okereafor - avatar
+ 1
hossein abazary Try this: weight = int(input()); height = float(input()); bmi = weight/float(height*height); 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')
4th Apr 2021, 9:02 PM
❤️😍Prerana😍❤️
❤️😍Prerana😍❤️ - avatar
+ 1
To the guys and girls who directly post their answer: hey we knew that you guys are good at coding .. But please don't directly post the answers give them suggestions or ask them to show their code... U guys are making them lazy
5th Apr 2021, 6:27 PM
kreddyt
kreddyt - avatar
0
w=int(input()) h=float(input()) bmi=w/h**h 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")
4th Apr 2021, 11:08 AM
hossein abazary
hossein abazary - avatar