Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
132506 张咏灏 判断身材 C++ Wrong Answer 1 MS 268 KB 269 2025-10-08 18:52:09

Tests(1/3):


Code:

#include<iostream> using namespace std; int main(){ int 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; }


Run Info:

------Input------
175 50
------Answer-----
thin
------Your output-----
fat