- 3
What?
what's the answer to BMI Calculator? Link: https://www.sololearn.com/learning/eom-project/1157/1020
3 Answers
+ 2
weight = int(input())
height = float(input())
calc = weight/(height**2)
if calc<18.5:
print("Underweight")
elif calc>=18.5 and calc<25:
print("Normal")
elif calc>=25 and calc<30:
print("Overweight")
else:
print("Obesity")
+ 5
Munchlax Kid ,
to get useful help from the community, we need to see your attempt first. without having seen your code, it is difficult to find out where the issue is.
=> please put your code in playground and link it here
thanks!
0
Idk, maybe 42