第一次使用博客

时间:2022-05-27 23:17:46

今天编了实验5-4的一个程序,是关于牛顿迭代法的

程序如下:

#include<stdio.h>
#include<math.h>
main()
{
double x1,x0,f,f1;
x1=1.5;
do
{
x0=x1;
f=((2*x0-4)*x0+3)/x0-6;
f1=(6*x0-8)*x0+3;
x1=x0-f/f1;
}while(x1-x0>1e-6);
printf("%5.2f\n",x1);
return 0;
}

但是貌似存在一些错误。

好累啊 不想编了