提交时间:2024-05-04 16:19:44

运行 ID: 39560

#include<bits/stdc++.h> using namespace std; float a,b,o=0; int main(){ cin>>a>>b; b/=100; o=a/b/b; if(o<18.5){ cout<<"thin"; } if(o>=18.5&&o<=24){ cout<<"great"; } if(o>24){ cout<<"fat"; } }