วันอาทิตย์ที่ 23 สิงหาคม พ.ศ. 2558

Lab1_BMI

การคำนวณหาค่าดัชนีมวลกาย BMI

//BMI
void setup() {
  size(300,300);
  background(#FF8B8B);//pink
  float w=48  ;//Weight
  float h=163  ;//Height
  float h_2=(h/100.0)*(h/100.0);//Height^2
  float BMI=w/h_2;//value of BMI

  //terminal output
  print("Value Of BMI="+BMI);

  //explaining text
  textSize(24);//size of text
  text("Weight = "+w+" Kg.",30,100);
  text("Height = "+h+" cm.",30,140);
  text("BMI="+BMI+"",30,180);
}

ไม่มีความคิดเห็น:

แสดงความคิดเห็น