Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
126782 | 王培用 | 判断身材 | C++ | Wrong Answer | 0 MS | 268 KB | 205 | 2025-07-21 16:53:39 |
#include<bits/stdc++.h> using namespace std; int main(){ int s,t,b; b=(s-100)*0.9; if(t>b){ cout<<"fat"; } if(t<b){ cout<<"thin "; } if(t==b){ cout<<"standard "; } return 0; }
------Input------
175 50
------Answer-----
thin
------Your output-----
fat