วันเสาร์ที่ 22 สิงหาคม พ.ศ. 2558

Lab1 : BMI

 
void setup(){
  size(500,300);
  background(#B454F5);
 
  float W=55;                            //Weight
  float H_cm=165;                   //height(centimeter)
  float H_m=H_cm/100;       //height(meter)
  float BMI;                             //BMI
 
  BMI=W/(H_m*H_m);
 
  textAlign(CENTER);              //text
  textSize(30);
  fill(#ffffff);
  text("Height = "+H_cm,250,50);
  text("Weight = "+W,250,150);
  textAlign(LEFT);
  text("Body Mass Index = "+BMI,50,250);
}

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

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