Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
126790 | 王培用 | 判断身材 | C++ | Accepted | 1 MS | 276 KB | 225 | 2025-07-21 16:59:52 |
#include<bits/stdc++.h> using namespace std; int main(){ int s,t,b; cin>>s>>t; b=(s-100)*0.9; if(t>1.1*b){ cout<<"fat"; } else if(t<0.9*b){ cout<<"thin"; } else{ cout<<"standard"; } return 0; }