这个方程的解是多少?

来源:百度知道 编辑:UC知道 时间:2024/05/14 14:35:08
10*x^2-177.6+10*(-4*20.2^2+4*20.2*x)=0
谢谢

还是那个程序问题啊

#include<iostream.h>
#include<math.h>
double main()
{
double x,y,z,t;
y=pow(x,2);
z=pow(20.2,2);

cout<<"您要求解的方程是:-2.5*x^2+16*177.6-80*(-2*20.2^2+40.4*x)=0"<<endl;
t=-2.5*pow(x,2)+16*177.6-80*(-2*pow(20.2,2)+40.4*x);
t=0;
cout<<"求解得出:"<<x<<endl;
return 0;
}

最后结果为
您要求解的方程是:-2.5*x^2+16*177.6-80*(-2*20.2^2+40.4*x)=0
求解得出:-9.25596e+061
Press any key to continue