0
give me advice
https://www.sololearn.com/coach/1020?ref=app I have a problem with this code I am a beginner 🤗🙏 https://code.sololearn.com/c5g86XoOgj7n/?ref=app
2 Respostas
+ 2
Just see this code 👇
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")
+ 1
Thanks 😊🙏