Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
37650 C++|刘一阳 鸡尾酒疗法 C++ 通过 0 MS 248 KB 323 2024-01-22 15:30:39

Tests(1/1):


#include <iostream> using namespace std; int main() { int n; double x,y,fspider,f; cin>>n; cin>>x>>y; fspider=y/x; n-=1; while(n--){ cin >>x >> y; f=y/x; if(f-fspider>0.05) cout<<"better\n"; else if(fspider-f>0.05) cout<<"worse\n"; else cout<<"same\n"; } return 0; }


测评信息: