Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
40794 yuhaoyu 鸡尾酒疗法 C++ 通过 1 MS 248 KB 453 2024-02-16 21:02:18

Tests(1/1):


#include <iostream> using namespace std; int main() { int n,a,b; float j,k; cin>>n; cin>>a>>b; j=(float)b/a; string result[20]; for(int i=2;i<=n;i++) { cin>>a>>b; k=(float)b/a; if(k-j>0.05) { result[i-2]="better"; } else if(j-k>0.05) { result[i-2]="worse"; } else { result[i-2]="same"; } } for(int j=2;j<=n;j++) { cout<<result[j-2]<<endl; } return 0; }


测评信息: