void setup(){
float BMI;//Body mass index
float weight;
float hight;
size(600,100);
weight = 84;
hight = 184;
hight = hight/100;
BMI=weight/(hight*hight);
println("Weight = "+weight);
print("Hight = ");
println(hight);
println("BMI = "+BMI);
fill(#2F640C);
textSize(40);
text("BMI is "+BMI,100,50);
}
ไม่มีความคิดเห็น:
แสดงความคิดเห็น