Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
51705 zhangsicun 鸡尾酒疗法 C++ 通过 1 MS 248 KB 424 2024-09-24 22:32:56

Tests(1/1):


#include<bits/stdc++.h> using namespace std; int main() { int a; double b, c, d, e; cin >> a >> b >> c; d = c / b; for (int i = 1; i < a; i++) { cin >> b >> c; e = c / b; if(e - d > 0.05){ cout << "better" << endl; }else if(d - e > 0.05){ cout << "worse" << endl;} else{ cout << "same" << endl;} } return 0; }


测评信息: