//K. Thanapat
void setup(){
size(400 ,200);
background(0 ,0 ,255);
//ประกาศตัวแปร
float bmi ,weight ,height ,meterHeight;
//กำหนดค่าให้ตัวแปร และ คำนวณค่าตัวแปร
weight = 53;
height = 170;
meterHeight = height/100;
bmi = weight/(meterHeight*meterHeight);
//ตัวอักษร
textSize(25);
text("Your Height = " +height ,50 ,50);
text("Your Weight =" +weight ,50 ,110);
text("Your BMI =" +bmi ,5 ,170);
}
ไม่มีความคิดเห็น:
แสดงความคิดเห็น