Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
8097 | 汪天一 | 肥胖问题 | C++ | 通过 | 100 | 0 MS | 252 KB | 239 | 2020-10-31 16:00:10 |
#include<bits/stdc++.h> using namespace std; int main(){ double w,h,ans; cin>>w>>h; ans=w/(h*h); if(ans<18.5) cout<<"Underweight"; if(ans>=18.5&&ans<24) cout<<"Normal"; if(ans>24) cout<<ans<<endl<<"Overweight"; return 0; }