Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
126797 唐洪盛 判断身材 C++ Wrong Answer 0 MS 272 KB 206 2025-07-21 17:09:25

Tests(0/3):


Code:

#include<bits/stdc++.h> using namespace std; int main() { double v,c,s; cin>>v>>c; s=(v-100)*0.9; if(s>c*1.1){ cout<<"fat"; }else if(s<c*0.9){ cout<<"thin"; } return 0; }


Run Info:

------Input------
12 12 100 130
------Answer-----
fat
------Your output-----
thin