13 条题解

  • -1
    @ 2025-3-14 17:21:35

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

    信息

    ID
    621
    时间
    1000ms
    内存
    125MiB
    难度
    6
    标签
    (无)
    递交数
    1264
    已通过
    399
    上传者