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
If the answers is incorrect or not given, you can answer the above question in the comment box. If the answers is incorrect or not given, you can answer the above question in the comment box.