9 solutions
Information
- ID
- 1342
- Time
- 1000ms
- Memory
- 256MiB
- Difficulty
- 3
- Tags
- (None)
- # Submissions
- 120
- Accepted
- 63
- Uploaded By
#include<bits/stdc++.h> using namespace std; float m,h,ans; int main(){ cin>>m>>h; ans=m/(h*h); if(ans<18.5) { cout<<"Underweight"; } else if(ans>=18.5&&ans<24) { cout<<"Normal"; } else if(ans>=24) { cout<<ans<<"\n"<<"Overweight"; } } 拿去抄吧,不用谢
By signing up a Hydro universal account, you can submit code and join discussions in all online judging services provided by us.