0

What is the test case 4 in BMI caliculation

I can't see that

2nd Mar 2022, 3:22 PM
God's Will
5 odpowiedzi
+ 9
God's Will , some test cases are hidden - this prevents that people just code to pass the test cases. to get help from the community, please link your code here. thanks!
2nd Mar 2022, 3:38 PM
Lothar
Lothar - avatar
+ 4
Thank you for your kind reply! I successfully completed the coding and got the result.
2nd Mar 2022, 4:16 PM
God's Will
+ 2
Lothar 👌👍
2nd Mar 2022, 5:03 PM
NonStop CODING
NonStop CODING - avatar
+ 1
Gotta post your code
2nd Mar 2022, 4:12 PM
Spartanguy1031
Spartanguy1031 - avatar
0
#here is my code and i cannot pass cases 4&5, nor do i know what those cases are looking for, they are locked weight = int(input()) height = float(input()) BMI = weight / height**2 if BMI <= 25: print("Underweight") elif BMI >=18.5 and BMI <= 25: print("Normal") elif BMI >= 25 and BMI <=30: print("Overweight") elif BMI >= 30: print("Obesity")
25th May 2022, 10:04 AM
M Heather Fleming
M Heather Fleming - avatar