Files
python/TangDou/XiTi/1225.cpp
HuangHai 1f397eca87 'commit'
2025-08-30 18:35:01 +08:00

15 lines
357 B
C++

#include <bits/stdc++.h>
using namespace std;
int main() {
float height, weight;
cin >> height >> weight;
float BMI = weight / (height * height); //注意这个扩号
if (BMI < 18.5) cout << "thin" << endl;
if (BMI >= 18.5 && BMI < 24) cout << "normal" << endl;
if (BMI >= 24) cout << "fat" << endl;
return 0;
}