Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
467 关清声 判断身材 C++ Accepted 0 MS 252 KB 250 2022-08-21 10:57:47

Tests(3/3):


Code:

#include<iostream> using namespace std; int main() { int l,h; cin>>l>>h; if(h>(l-100)*0.9*1.1) { cout<<"fat"<<endl; } else if(h>(l-100)*0.9*0.9) { cout<<"standard"<<endl; } else { cout<<"thin"<<endl; } return 0; }