为什么老60分啊QWQ

B2065 鸡尾酒疗法

l_Zilch_l @ 2024-10-10 19:42:59

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

by WEICY123 @ 2024-10-10 19:48:01

假设鸡尾酒疗法的有效率为 x,新疗法的有效率为 y,如果 y−x 大于 5%,则效果更好,如果 x−y 大于 5%,则效果更差,否则称为效果差不多。 @l_Zilch_l 认真读题


|