hd 1701

浮点数误差。具体原因我还不知道 借网上一图

hd 1701_第1张图片

②理解题意 即

if(int(x*p/100)<int(x*q/100)) break;

ac代码和wa代码的比较

 1 //AC代码
 2 #include <iostream>
 3 using namespace std;
 4 
 5 int main()
 6 {
 7     int t;
 8     double p,q;
 9     cin>>t;
10     while(t--)
11     {
12         cin>>p>>q;
14         int x=1;
15         while(x++)
16         {
17             if(int(x*p/100)<int(x*q/100)) break;
18         }
19         cout<<x<<endl;
20 
21     }
22     return 0;
23 }
//WA代码
#include <iostream>
using namespace std;

int main()
{
    int t;
    double p,q;
    cin>>t;
    while(t--)
    {
        cin>>p>>q;
        p/=100;q/=100;
        int x=1;
        while(x++)
        {
            if(int(x*p)<int(x*q)) break;
        }
        cout<<x<<endl;

    }
    return 0;
}

 

你可能感兴趣的:(hd 1701)