C语言用对分法求f(x)=x^2-6x-1在(-10,10)的根
请高手速回,务必正确程序。
#include <stdio.h>
#include <math.h>
main()
{
double x1,x2;
x1=(6+sqrt(6*6+4))/2;
x2=(6-sqrt(6*6+4))/2;
while(-10<x1<10)
{
printf("%f\n",x1);
break;
}
while(-10<x2<10)
{
printf("%f\n",x2);
break;
}
system("pause");
}