1 条题解

  • 0
    @ 2023-6-11 12:17:58

    C++ :

    #include <bits/stdc++.h>
    using namespace std;
    
    int main(){
    	int h,w;//身高、体重
    	cin>>h>>w;
    	double r = w / (h * h * 1.0 / 100 / 100);
    	if(r >= 24){
    		cout<<"Too fat!"<<endl;
    		cout<<w - (int)(24 * (h * h * 1.0 / 100 / 100))<<endl;
    	}else if(r <= 18){
    		cout<<"Too thin!"<<endl;
    		cout<<(int)ceil((18 * (h * h * 1.0 / 100 / 100)) - w)<<endl;
    	}else{
    		cout<<"Good!"<<endl;
    	}
    }
    
    
    • 1

    信息

    ID
    2444
    时间
    1000ms
    内存
    128MiB
    难度
    (无)
    标签
    递交数
    0
    已通过
    0
    上传者