Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
8196 | 郑奚桐 | 肥胖问题 | C++ | 解答错误 | 66 | 0 MS | 248 KB | 256 | 2020-10-31 17:04:09 |
#include<bits/stdc++.h> using namespace std; int main(){ int m,ans; double h; cin>>m>>h; ans=m/(h*h)*1.0; if(ans<18.5) cout<<"Underweight"; if(ans>=18.5&&ans<24) cout<<"Normal"; if(ans>=24) cout<<ans<<endl,cout<<"Overweight"; return 0; }