Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
8084 | 陈万瑄 | 肥胖问题 | C++ | 通过 | 100 | 0 MS | 248 KB | 257 | 2020-10-31 15:51:13 |
#include<bits/stdc++.h> using namespace std; double m,h,bmi; int main(){ cin>>m>>h; bmi=m/pow(h,2); if(bmi<18.5) cout<<"Underweight"; else if(bmi>=18.5&&bmi<24) cout<<"Normal"; else{ cout<<bmi<<endl; cout<<"Overweight"; } return 0; }