#include<stdio.h>
#include<math.h>
double cal(double x)
{
return 4+2.0/3*cos(x);
}
int main()
{
double x0,x1,flag,x;
int N;
printf("x0 x1 flag N\n");
scanf("%lf %lf %lf %d",&x0,&x1,&flag,&N);
int n=1;
while(n<=N)
{
x=x1-cal(x1)*(x1-x0)/(cal(x1)-cal(x0))*1.0;
printf("迭代次数:%d 近似解:%lf",n,x);
if(fabs(x-x1)<flag)
{
printf("");
printf("迭代次数:%d 近似解:%lf",n,x);
return 0;
}
++n;
x0=x1;
x1=x;
}
return 0;
}
secant_method
最新推荐文章于 2020-11-04 22:03:19 发布