BMI CALCULATOR

D

Deleted member 8365

ALLAH IS BLACK 😎
Joined
Jul 12, 2020
Posts
29,668
Reputation
25,812
That BMI calculator… had the concept down but kept failing one of the hidden tests and didnt know why. Had the general code right all along, but I was too exclusive w my elif conditions and only gave 1 decimal place. For instance, I shortsightedly used <=24.9 to output an Normal score rather than using <25. Its obvious now, but i spent an hour rewriting the whole thing so very many times. Thats an hour invested into never making that mistake again.

w = float(input())
h = float(input())
bmi = (w / (h**2))

if bmi < 18.5:
print("Underweight")
elif bmi < 25:
print("Normal")
elif bmi < 30:
print("Overweight")
else:
print("Obesity")
 

Similar threads

Elegant
Replies
38
Views
1K
SanTheTrucel
SanTheTrucel
CorinthianLOX
Replies
24
Views
2K
looksmaxxed
looksmaxxed
TheBlackpilledOne
Replies
5
Views
416
IWANTTOHELPEVERYONE
IWANTTOHELPEVERYONE
turneywest
Replies
271
Views
11K
Raimaxxing
Raimaxxing
Copercel
Replies
133
Views
14K
Wexilarious
Wexilarious

Users who are viewing this thread

Back
Top