kmitl-profund-exercise/bmi-calculator-cli/main.cpp

24 lines
677 B
C++
Raw Normal View History

#include<stdio.h>
#include<math.h>
int main() {
float x,y,z;
printf("ความสูง (ในหน่วยเมตร) : ");
scanf("%f", &x);
printf("น้ำหนัก (ในหน่วยกิโลกรัม) : ");
scanf("%f", &y);
z = y/pow(x, 2);
printf("ค่า BMI ของคุุณคือ %.1f และอยู่ในเกณฑ์: ", z);
if(z<18.5){
printf("น้ำหนักต่ำกว่าเกณฑ์");
}
else if (z>=18.5&&z<25){
printf("ปกติ");
}
else if (z>=25&&z<30){
printf("สูงกว่ามาตรฐาน");
}
else printf("อ้วนเกินไป");
//return 0;
}