Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
6004 | BaiJunYi | 肥胖问题 | C++ | 通过 | 100 | 1 MS | 796 KB | 320 | 2020-08-22 10:20:54 |
#include <iostream> #include <cstdio> #include <cmath> using namespace std; int main() { double m, h, c; cin >> m >> h; c = m / (h*h); if ( c < 18.5) cout <<"Underweight"; else if ( c >= 18.5 && c < 24) cout <<"Normal"; else if ( c > 24) cout << c << endl << "Overweight"; return 0; }