| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 132514 | 张咏灏 | 判断身材 | C++ | Wrong Answer | 1 MS | 272 KB | 277 | 2025-10-08 19:03:11 |
#include<iostream> using namespace std; int main(){ double a,b; cin>>a>>b; if(a>b-100*0.9*1.1){ cout<<"fat"<<endl; }else if(a<(b-100)*0.9*0.9){ cout<<"thin"<<endl; }else{ cout<<"standard"<<endl; } return 0; }
------Input------
175 50
------Answer-----
thin
------Your output-----
fat