Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
38322 yuzhengxun 鸡尾酒疗法 C++ 解答错误 0 MS 248 KB 337 2024-01-26 16:02:30

Tests(0/1):


#include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; int a,b; cin>>a>>b; float x=b*1.0/a; for(int i=2;i<=n;i++){ cin>>a>>b; float y=b*1.0/a; if((x-y)>0.05){ cout<<"better"<<endl; }else if((y-x)>0.05){ cout<<"worse"<<endl; }else{ cout<<"same"<<endl; } } return 0; }


测评信息: