Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
146098 c13 判断身材 C++ Accepted 1 MS 272 KB 244 2026-01-25 21:06:02

Tests(3/3):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ double a,b; cin>>a>>b; double bz=(a-100)*0.9; if(b>bz*1.1)cout<<"fat"<<endl; else if(b<bz*0.9)cout<<"thin"<<endl; else cout<<"standard"<<endl; return 0; }