B2065 鸡尾酒疗法

思路

输入数据时,判断是否第一组。

用第一组计算鸡尾酒疗法的有效率。

其他数据是新疗法有效率。

按题目要求比较两个有效率,输出新疗法的效果。

代码

#include <iostream>
using namespace std;
double n, a, b, x, y; //x为鸡尾酒疗法有效率,y为新疗法有效率
int main()
{
    cin >> n;
    for(int i = 0;i < n;++i)
    {
        cin >> a >> b;
        if(!i) {x = b / a;continue;} //第一组存鸡尾酒疗法的有效率
        else y = 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;
}
posted @ 2021-07-13 19:30  5k_sync_closer  阅读(19)  评论(0编辑  收藏  举报  来源