Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
96951 张德皓 判断身材 C++ Wrong Answer 1 MS 272 KB 295 2024-11-09 22:23:19

Tests(2/3):


Code:

#include<iostream> #include<cstdio> using namespace std; int main(){ int a,b; cin>>a>>b; if((a-100)*0.9==b){ cout<<"standard"; } else if((a-100)*0.9>b){ cout<<"thin"; } else if((a-100)*0.9<b){ cout<<"fat"; } return 0; }


Run Info:

------Input------
175 70
------Answer-----
standard
------Your output-----
fat