我写了这个程序,它计算用户输入的x值的8个多项式度数。程序运行,但是一旦我输入8个多项式,它应该允许我输入x的值,但它会跳过,并显示输出。我尝试在扫描仪功能中使用浮动和双打,但是没有用。非常感谢任何帮助,谢谢。
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
void get_poly(double *coeff, int N);
double eval_poly(double *coeff, double base, int N);
int main(void)
{
int N = 8;
double res;
double base = 0.0;
double a[N];
double *coeff;
coeff = &a[0];
printf("Enter the eight coeffecients: \n");
scanf(" %d",&N);
get_poly(coeff, N);
printf("Enter x: \n");
scanf(" %lf", &base);
res=eval_poly(coeff, base, N);
printf("Output: %f. \n",res);
return 0;
}
void get_poly(double *coeff, int N)
{
int i = 0;
double placeholder;
for (i = 0; i < N; i++)
{
scanf(" %lf", &placeholder);
*coeff = placeholder;
coeff++;
}
}
double eval_poly(double *coeff, double base, int N)
{
int i = 0;
double res=0.0;
for (i = 0; i < N; i++)
res=res+coeff[i]*pow(base,i);
return res;
}
答案 0 :(得分:0)
一个主要问题是eval_poly
函数中的这个定义:
double res=coeff[N];
这里N
的值是传递给函数的数组的大小。将它用作索引将超出范围并导致未定义的行为。
与循环相同,条件i <= N
将导致您将数组索引越界。 和 您将计算相同的元素两次。
您可能应该将res
初始化为零。