Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
5988 . 肥胖问题 C++ 解答错误 0 1 MS 780 KB 251 2020-08-22 10:03:29

Tests(0/30):


#include<iostream> using namespace std; int main() { int m; double t,h; cin>>m>>h; t=m/(h*h); if(t<18.5) cout<<"Underweight"; else if(18.5<=t&&t<24) cout<<"Normal"; else if(t>=24) { cout<<t<<endl<<"Overweight"; } return 0; }


测评信息: