编个C语言程序,用一般迭代法求方程sinx- x^2/2=0在x=1附近的根(精确到0.00001)输出每次迭代的结果以及
1个回答
展开全部
牛顿迭代法
#include <stdio.h>
#include <math.h>
int main()
{
float x=1,x1;
while(1)
{
x1=x-(sin(x)-0.5*x*x)/(cos(x)-x);
cout<<x1<<endl;
if(x1-x<0.00001 && x1-x>-0.00001)
break;
x=x1;
}
return 0;
}
结果:
1.74282
1.4641
1.40703
1.40442
1.40441
#include <stdio.h>
#include <math.h>
int main()
{
float x=1,x1;
while(1)
{
x1=x-(sin(x)-0.5*x*x)/(cos(x)-x);
cout<<x1<<endl;
if(x1-x<0.00001 && x1-x>-0.00001)
break;
x=x1;
}
return 0;
}
结果:
1.74282
1.4641
1.40703
1.40442
1.40441
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询