Thread: Bmi
View Single Post
  #3  
Old 06-10-2007, 04:16 AM
Angel_Light Angel_Light is offline
Varia Developer
Angel_Light's Avatar
Join Date: Nov 2005
Location: Knoxville, TN
Posts: 1,684
Angel_Light is on a distinguished road
Send a message via AIM to Angel_Light Send a message via MSN to Angel_Light
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 :[
__________________
Deep into the Darkness peering...
Reply With Quote