4 2 多項式求值

2021-07-10 01:29:02 字數 688 閱讀 8890

本題要求實現乙個函式,計算階數為n,係數為a[0]...a[n]的多項式x)=\sum_^(a[i]\times x^i)

本題要求實現乙個函式,計算階數為n,係數為a[0]...a[n]的多項式x點的值。

double f( int n, double a, double x );
其中n是多項式的階數,a中儲存係數,x是給定點。函式須返回多項式f(x)的值。

#include #define maxn 10

double f( int n, double a, double x );

int main()

/* 你的**將被嵌在這裡 */

2 1.1

1 2.5 -38.7

-43.1
double f( int n, double a, double x )

4 2 多項式求值

本題要求實現乙個函式,計算階數為n,係數為a 0 a n 的多項式 函式介面定義 double f int n,double a,double x 其中n是多項式的階數,a中儲存係數,x是給定點。函式須返回多項式f x 的值。裁判測試程式樣例 include define maxn 10 doubl...

4 2 多項式求值

本題要求實現乙個函式,計算階數為n,係數為a 0 a n 的多項式f x sum a i times x i f x i 0 n a i x i 在x點的值。double f int n,double a,double x 其中n是多項式的階數,a中儲存係數,x是給定點。函式須返回多項式f x 的值...

4 2 多項式求值 15分

函式介面定義 double f int n,double a,double x 其中n是多項式的階數,a中儲存係數,x是給定點。函式須返回多項式f x 的值。很自然的就會反應出一種愚蠢的解法,是這樣的想法 double f int n,double a,double x 這種解法如此自然,還能得到有...