Afraid this doesnt work, I used a BMI calculator site and input this
height 6'4" = 76in
weight = 238 lbs
professional calc got this for the BMI : 28.9671052632
i tried both methods found
Method 1 : (weight/height^2) * 703 BMI got : 41828.5
graal formula
PHP Code:
(this.weight/this.height^2) * 703;
Method 2 : (weight *703)/height^2 BMI got : 13357
graal formula
PHP Code:
(this.weight*703)/this.height^2;
what am I doing wrong :[