Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
100717 | 陈家渝 | 判断身材 | C++ | Wrong Answer | 1 MS | 272 KB | 463 | 2024-12-11 20:53:11 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int c,k,x; cin>>c>>k; if(k>x*1.1) { cout<<"fat"; } else if(k<x*0.9) { cout<<"thin"; } else { cout<<"standard"; } return 0; }
------Input------
175 50
------Answer-----
thin
------Your output-----
fat