代碼如下所示:
代碼如下:
#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;
}