返回列表 發帖
老師這是a006那題 有自己弄懂long/long long/bool/還有為甚麼要加0.1跟+0.9(對y來說就是-0.1)
  1. #include<iostream>
  2. #include<cmath>
  3. using namespace std;

  4. long double fx(int a,int b,int c, int d, int e,int f,double x)
  5. {
  6.         return a*pow(x,5)+b*pow(x,4)+c*pow(x,3)+d*pow(x,2)+e*x+f;
  7. }

  8. int main()
  9. {
  10.         long long int a,b,c,d,e,f;
  11.         long double x,y;
  12.         bool dis;
  13.         while(cin>>a>>b>>c>>d>>e>>f)
  14.         {
  15.                 dis=true;
  16.                 if(a==0&&a==b&&a==c&&a==d&&a==e&&a==f)//都為0 預設為true
  17.                 {
  18.                         dis=false;
  19.                         cout<<"Too many... = =\"\n";
  20.                 }
  21.                 else
  22.                 {
  23.                         for(int i=-40;i<40;i++)
  24.                         {
  25.                                 x=fx(a,b,c,d,e,f,i),y=fx(a,b,c,d,e,f,i+1);
  26.                                 //cout<<"x:"<<x<<" y:"<<y<<endl;
  27.                                 if(x*y<0)
  28.                                 {
  29.                                         dis=false;
  30.                                         cout<<i<<" "<<i+1<<endl;
  31.                                 }
  32.                                 else if(x==0)
  33.                                 {
  34.                                         dis=false;
  35.                                         cout<<i<<" "<<i<<endl;
  36.                                        
  37.                                         x=fx(a,b,c,d,e,f,i+0.1);//確保範圍內還有解
  38.                                         if(x*y<0)
  39.                                                 cout<<i<<" "<<i+1<<endl;
  40.                                 }
  41.                                 else if(y==0)
  42.                                 {
  43.                                         dis=false;
  44.                                         y=fx(a,b,c,d,e,f,i+0.9);//確保範圍內還有解
  45.                                         if(x*y<0)
  46.                                                 cout<<i<<" "<<i+1<<endl;
  47.                                 }
  48.                         }
  49.                 }
  50.                 if(dis)//if dis為true
  51.                         cout<<"N0THING! >\\\\\\<\n";
  52.         }
  53.         return 0;
  54. }
複製代碼

TOP

返回列表