標題:
2025/01/18 課堂重點
[打印本頁]
作者:
方浩葦
時間:
2025-1-18 08:18
標題:
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
[備註]
提早做完的同學去練題目:
程式練習題清單
作者:
許浩浩
時間:
2025-1-18 15:03
#include<bits/stdc++.h>
using namespace std;
long double fx(int a,int b,int c,int d,int e,int f,double x)
{
return a*pow(x,5)+b*pow(x,4)+c*pow(x,3)+d*pow(x,2)+e*x+f;
}
int main()
{
long long int a,b,c,d,e,f;
long double x,y;
bool dis;
while(cin>>a>>b>>c>>d>>e>>f)
{
dis=true;
for(int i=-40;i<=40;i++)
{
x=fx(a,b,c,d,e,f,i);
y=fx(a,b,c,d,e,f,i+1);
if(a==0 and a==b and a==c and a==d and a==e and a==f)
{
dis=false;
cout<<"Too many... = =\""<<"\n";
break;
}
else
{
if(x*y<0)
{
dis=false;
cout<<i<<" "<<i+1<<"\n";
}
else if(x==0)
{
dis=false;
cout<<i<<" "<<i<<"\n";
x=fx(a,b,c,d,e,f,i+0.1);
if(x*y<0)
cout<<i<<" "<<i+1<<"\n";
}
else if(y==0)
{
dis=false;
y=fx(a,b,c,d,e,f,i+0.9);
if(x*y<0)
cout<<i<<" "<<i+1<<"\n";
}
}
}
if(dis)
{
cout<<"N0THING! >\\\\\\<"<<"\n";
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2