#include
#include
float getvalue(float x)
{
return x*x*x+4*x*x-10;
}
void main()
{
float a=1,b=1.5,c;
c=(a+b)/2;
while(fabs(getvalue(c))>0.00001 && fabs(a-b)>0.00001){
if(getvalue(c)*getvalue(b)
#include
#include
float getvalue(float x)
{
return x*x*x+4*x*x-10;
}
void main()
{
float a=1,b=1.5,c;
c=(a+b)/2;
while(fabs(getvalue(c))>0.00001 && fabs(a-b)>0.00001){
if(getvalue(c)*getvalue(b)