calc_BMI static method

double calc_BMI(
  1. int lbs,
  2. double inches
)

Implementation

static double calc_BMI(int lbs,double inches){
  return 703*lbs/inches/inches;
}