void setup(){
float w; //weight
float h; //hight
float BMI; //BMI IS BODY MASS INDEX
size(300,300);
background(0);
//set up
w=57;
h=171;
BMI = w / ((h/100) * (h/100));
textSize(15);
//show value
text("weight = "+w,100,130);
text("hight = "+h,100,110);
text("BMI = "+BMI,100,150);
}
ไม่มีความคิดเห็น:
แสดงความคิดเห็น