我必须使用泰勒系列和误差界限来计算e ^(x)。我们被指示制作3个单独的函数,然后使用它们以用户输入的精度和x值计算e ^(x)。编译器最终编译代码,但是如果我输入x = 2,delta =(anything),我得到sum = 3.000而不是7.3890。我假设它的最后一个循环(sum循环)有错误。任何帮助表示赞赏。
代码:
#include<stdio.h>
#include<math.h>
float power(float A, int B)
{
float sum=1.0;
int nterms=1;
while ( nterms <= B && B > 0)
{
sum = A*sum;
nterms++;
}
return sum;
}
int factorial(int b)
{
int fact=1;
while (b >= 2)
{
fact = b*(b-1)*fact;
b = b-2;
}
return fact;
}
int Terms(float X, float a)
{
int N=1,l;
float L,R;
l=N+1;
while (L < a && a <= R)
{
L= (power(X,l)/(factorial(l)));
R= (power(X,N)/(factorial(N)));
N++;
}
return N;
}
int main()
{
float x, delta, term=0.0, sum=0.0;
int n, Nterms;
printf("Please enter a decimal number. x=");
scanf("%f",x);
printf("Please enter an another number. delta=");
scanf("%d",delta);
Nterms=Terms(x,delta);
for(n=0;n<Nterms;n++)
{
if( n==0 || n==1 )
{
sum = 1 + x;
}
else if (n>=2 && n<Nterms)
{
sum = sum + term;
term = (power(x,n))/(factorial(n));
}
}
printf("The approximation for e^(%f)=%f",x,sum);
return 0;
}
答案 0 :(得分:1)
更改
scanf("%f",x);
scanf("%d",delta);
到
scanf("%f", &x);
scanf("%f", &delta);
错误在于您如何阅读用户输入。 scanf()
将读取指针指向的位置。