Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
29294 惠子铭 鸡尾酒疗法 C++ 通过 0 MS 252 KB 422 2023-10-27 15:46:25

Tests(1/1):


#include <iostream> #include <iomanip> using namespace std; int main() { int n, a, b; double x, y; cin >> n; cin >> a >> b; x = (double)b/a; for (int i=1; i<n; i++){ cin >> a >> b; y = (double)b/a; if ((y-x) > 0.05) cout << "better" << endl; else if ((x-y) > 0.05) cout << "worse" << endl; else cout << "same" << endl; } return 0; }


测评信息: