提交时间:2024-05-05 08:42:42

运行 ID: 39640

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