Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
96950 | 张德皓 | 判断身材 | C++ | Wrong Answer | 1 MS | 276 KB | 271 | 2024-11-09 22:14:32 |
#include<iostream> #include<cstdio> using namespace std; int main(){ int a,b; cin>>a>>b; if((a-100)*0.9>b){ cout<<"thin"; } if((a-100)*0.9<b){ cout<<"fat"; } else{ cout<<"standard"; } return 0; }
------Input------
175 50
------Answer-----
thin
------Your output-----
thinstandard