1
0
mirror of https://github.com/renbaoshuo/202401-programming-assignments.git synced 2024-11-23 15:48:42 +00:00
202401-programming-assignments/【实践课内】10.函数1/6-4 多项式求值.c

12 lines
180 B
C
Raw Normal View History

2024-11-20 02:24:14 +00:00
double f(int n, double a[], double x) {
double res = 0;
double k = 1;
for (int i = 0; i <= n; i++) {
res += a[i] * k;
k *= x;
}
return res;
}