4 2 多項式求值 15分

2022-03-22 09:52:39 字數 721 閱讀 4737

本題要求實現乙個函式,計算階數為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)的值。

#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)

return

sum;

}

歡迎指教,一起學習!

謝謝!

4 2 多項式求值 15分

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

4 2 多項式求值 15分

本題要求實現乙個函式,計算階數為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分

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