代码如下所示:
复制代码 代码如下:
#include <stdio.h>
#include <math.h>
int main()
{
float x,x0,f,f0;
x=1.5;
do
{
x0=x;
f0=((2*x-4)*x+3)*x-6; //求得在x0处解
f=(6*x0-8)*x0+3; // 在(x0 ,f0)处导数
x=x0-f0/f;
}while(fabs(x-x0)>=1e-6);
printf("the root is %.2f",x0);
return 0;
}
时间: 2024-09-26 07:47:13