Calculate the BMI of a person using the formula BMI = ( Weight in Pounds / ( Height in inches ) x ( Height in inches ) ) x 703 and assign the value to the variable bmi . Assume the value of the weight in pounds has already been assigned to the variable w and the value of the height in inches has been assigned to the variable h . Take care to use floating-point division.

Calculate the BMI of a person using the formula BMI = ( Weight in Pounds / ( Height in inches ) x ( Height in inches ) ) x 703 and assign the value to the variable bmi . Assume the value of the weight in pounds has already been assigned to the variable w and the value of the height in inches has been assigned to the variable h . Take care to use floating-point division.



Answer: bmi = (w/ (h) (h)) 703


Learn More :