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