Sunday, August 30, 2015

Lab2 - Calculate body mass index (BMI) (function)

void setup(){
//wit from Weight
//hit from Height

float bmi1 = cal_bmi(61, 165);
}

float cal_bmi(float wit, float hit){
      //Calculate body mass index (BMI)
  float bmi;
  //equation
  bmi = wit/((hit/100)*(hit/100));
   //result
  println("Your Weight is" ,wit);
  println("Your Height is" ,hit);
  println("Your BMI is" ,bmi);
  return bmi;
}

No comments:

Post a Comment