返回列表 發帖

2025/01/18 課堂重點

本帖最後由 方浩葦 於 2025-1-18 15:57 編輯

上課錄影連結

[上課進度]

測驗-601

講解-a043


觀念題:

考古題:

10510 - 07
10510 - 08
10510 - 09


練習題:

10510 - 07
10510 - 08
10510 - 09

實作題:

10503 - 2
10503 - 3
10503 - 4


[回家作業]

a006

[作業檢查]
kitajudge回復


[下次考試]
510

[備註]
提早做完的同學去練題目:程式練習題清單

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. long double fx(int a,int b,int c,int d,int e,int f,double x)
  4. {
  5.     return a*pow(x,5)+b*pow(x,4)+c*pow(x,3)+d*pow(x,2)+e*x+f;
  6. }
  7. int main()
  8. {
  9.     long long int a,b,c,d,e,f;
  10.     long double x,y;
  11.     bool dis;
  12.     while(cin>>a>>b>>c>>d>>e>>f)
  13.     {
  14.         dis=true;
  15.         for(int i=-40;i<=40;i++)
  16.         {
  17.             x=fx(a,b,c,d,e,f,i);
  18.             y=fx(a,b,c,d,e,f,i+1);
  19.             if(a==0 and a==b and a==c and a==d and a==e and a==f)
  20.             {
  21.                 dis=false;
  22.                 cout<<"Too many... = =\""<<"\n";
  23.                 break;
  24.             }
  25.             else
  26.             {
  27.                 if(x*y<0)
  28.                 {
  29.                     dis=false;
  30.                     cout<<i<<" "<<i+1<<"\n";
  31.                 }
  32.                 else if(x==0)
  33.                 {
  34.                     dis=false;
  35.                     cout<<i<<" "<<i<<"\n";
  36.                     x=fx(a,b,c,d,e,f,i+0.1);
  37.                     if(x*y<0)
  38.                         cout<<i<<" "<<i+1<<"\n";
  39.                 }
  40.                 else if(y==0)
  41.                 {
  42.                     dis=false;
  43.                     y=fx(a,b,c,d,e,f,i+0.9);
  44.                     if(x*y<0)
  45.                         cout<<i<<" "<<i+1<<"\n";
  46.                 }
  47.             }
  48.         }
  49.         if(dis)
  50.         {
  51.             cout<<"N0THING! >\\\\\\<"<<"\n";
  52.         }
  53.     }
  54. }
複製代碼

TOP

返回列表