+ 3
Python bmi calculator
Hello, my code worked on pc but it doesn't in the app test. Any ideas plz
6 Respostas
+ 4
Abou Michel ,
there are still some issues. i have marked them with comments:
https://code.sololearn.com/cMTEfxXhwsup/?ref=app
+ 2
Show us the code please
+ 2
w = int(input("weight: "))
h = float(input("height: "))
x = w / (h*h)
print(x)
if x < 18.5:
print ("underweight")
elif x >= 18.5 and x < 25:
print ("normal")
elif x >= 25 and x < 30:
print ("overweight")
else:
if x >= 30:
print ("Obesity")
+ 2
SL is case sensitive, meaning if your code outputs "underweight" instead of "Underweight", it marks as wrong
+ 1
Okay tnx
+ 1
I did what you told me to do.
Am confused test 1 nd test 2 the output is right but marked as wrong
Same problem i have in search engine test