题目提示使用cout输出,使用 C++,比较容易,用C语言还要考虑数值的保留问题,不利于解题
#include
using namespace std;
int main(){
float m, h, BMI;
cin >> m >> h;
BMI = m / (h*h);
if( BMI < 18.5 ){
cout << "Underweight";
}
else if( BMI >= 18.5 && BMI < 24){
cout << "Normal";
}
else{
cout << BMI << endl << "Overweight" << endl;
}
return 0;
}