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

Lab 1 : Calculate body mass index (BMI)



void setup(){
size(400,200);

float w;
float h;
float d;
float BMI;

w=70;
h=150;
d=h/100;

BMI=w/(d*d);

textSize(25);
fill(0);
text("Height = "+h+" cm.",20,50);
text("Weight = "+w+" kg.",20,90);
text("Value of BMI = "+BMI+" cm.",20,130);

}

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

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