Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
126786 王培用 判断身材 C++ Wrong Answer 1 MS 264 KB 252 2025-07-21 16:57:06

Tests(0/3):


Code:

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


Run Info:

------Input------
12 12 100 130
------Answer-----
fat
------Your output-----