sin(x)泰勒级数求近似值
#include<stdio.h>double x_jiecheng(int n,double x)
{
double temp_xjc=1;
int i;
for(i=2*n-1;i>0;i--)
temp_xjc*=x;
return (temp_xjc);
}
int xs_jiecheng(int n)
{
int temp_xsjc=1,i;
for(i=2*n-1;i>0;i--)
temp_xsjc*=i;
return (temp_xsjc);
}
main()
{
int n=1;
double x,sum=0;
printf("sin(x) x=:");
scanf("%lf",&x);
while(sum>=1e-5)
{
sum+=x_jiecheng( n, x)/xs_jiecheng(n);;
n++;
}
printf("%d\n",n);
} 有些明显的错误,请问你的疑问是什么 有没有具体过程呢,亲,
看不懂
还有运行过程
页:
[1]