void setup() {
size(500, 500);
background(220,132,55);
}
void draw() {
float high=169;//high(Cm.)
float weight=51;//weight(kg.)
float High=high/100;//High(m.)
float bmi;//BMI
bmi=weight/(High*High);//calcutate
fill(255,255,255);
textSize(40);
text("Calculate", 180, 50);
fill(19,63,236);
textSize(25);
text("High="+high+"cm", 80, 150);
textSize(25);
text("Weight="+weight+"kg", 80, 250);
textSize(25);
text("BMI="+bmi, 80, 350);
}
ไม่มีความคิดเห็น:
แสดงความคิดเห็น