1 条题解

  • 1

    #include<bits/stdc++.h> using namespace std; int main() { double m,h,BMI; cin>>m>>h; BMI=m/h/h; if(BMI<18.5) { cout<<"Underweight"; } if(BMI>=18.5 && BMI<24) { cout<<"Normal"; } if(BMI>24) { cout<<BMI<<endl; cout<<"Overweight"; } return 0; }

    • 1

    信息

    ID
    9736
    时间
    1000ms
    内存
    125MiB
    难度
    1
    标签
    (无)
    递交数
    60
    已通过
    23
    上传者