#41457: C++ 解答


austin970205@gmail.com (204鄭源鈞)

學校 : 國立中興大學附屬高級中學
編號 : 268994
來源 : [125.231.9.131]
最後登入時間 :
2024-10-18 22:39:20
a647. 投資專家 | From: [111.246.76.211] | 發表日期 : 2024-07-28 14:05

#include<bits/stdc++.h>

using namespace std;

int main(){

    int n;

    cin>>n;

    for(int i=0;i<n;i++){

        double m=0,p=0;

        cin>>m>>p;

        double x;

        x=(p-m)/m;

        if(x>=0){

            x+=0.0000001;

        }

        else{

            x-=0.0000001;

        }

        x*=100;

        if(x>=10||x<=-7){

            cout<<fixed<<setprecision(2)<<x<<"% dispose"<<endl;

        }

        else{

            cout<<fixed<<setprecision(2)<<x<<"% keep"<<endl;

        }

    }

}

 
ZeroJudge Forum