[求助]关于求解的算法
求多项式的解时有利用牛顿迭代法求方程 的根
利用二分法求方程 的根。
例如2X3-4X2+3X-6=0
用两种方法区别在哪里
#include <stdio.h>
#include <math.h>
float f(float x)
{
float y;
y=((2*x-4.0)*x+3)*x-6.0;
return y;
}
float xpiont(float x1,float x2)
{
float y;
y=(x1*f(x2)-x2*f(x1))/(f(x2)-f(x1));
return y;
}
float root (float x1,float x2)
{
float x,y,y1;
y1=f(x1);
do
{
x=xpiont(x1,x2);
y=f(x);
if(y*y1>0)
{
y1=y;
x1=x;
}
else
x2=x;
}while(fabs(y)>=0.0001);
return x;
}
void main()
{
float x1,x2,f1=1.0,f2=1.0,x;
while(f1*f2>=0)
{
printf("input x1,x2:\n");
fflush(stdin);
scanf("%f,%f",&x1,&x2);
f1=f(x1);
f2=f(x2);
}
x=root(x1,x2);
printf("A root of equation is %8.4f\n",x);
}