Information
- ID
- 88
- Time
- 1000ms
- Memory
- 256MiB
- Difficulty
- 5
- Tags
- # Submissions
- 707
- Accepted
- 275
- Uploaded By
#include <iostream>
using namespace std;
int main()
{
double h,w;
cin >> h >> w;
double bmi = w/h/h;
if(bmi >= 24) cout << "high" << endl;
else if(bmi >= 18.5) cout << "normal" << endl;
else cout << "low" << endl;
return 0;
}
By signing up a 追梦算法网 universal account, you can submit code and join discussions in all online judging services provided by us.