#include #include #include main( ) { double h, w ; double s; printf("Enter the height(m) = \n"); scanf("%lf", &h ); printf("Enter the weight(kg) = \n"); scanf("%lf", &w ); /* 処理: 値の計算 */ s = w/pow(h,2) ; /* 結果の出力 */ if(s>=24) { printf("「太り気味」です。\n" ); }else if(s>=20) { printf("「標準体重」です。\n" ); }else{ printf("「痩せ気味」です。\n" ); } exit(0); }