#include
system("cls");把这个加到要清屏的地方
//win32控制台程序
#include
#include
#include
using std::endl;
using std::cout;
using std::cin;
int main()
{
chonglai:
system("cls");
double x1,x2,deta;
int a,b,c;
cout<<"请依次输入a、b和c:";
cin>>a>>b>>c;
if(a==0)
cout<<"该方程不是1元二次方程";
else
{
cout<<"正准备求"< deta=b*b-4*a*c;
if(deta==0)
{
cout<<"该方程只有一个根:";
x1=-b/(2*a);
cout<
else
{
if(deta>0)
{
cout<<"该方程有两个根:";
x1=(-b+sqrt(deta))/(2*a);
x2=(-b-sqrt(deta))/(2*a);
cout<
else
if(deta<0)
cout<<"该方程无实数根"<
}
}
int esc;
cout<<"输入1退出,输入其他则重新求根,请选择:";
cin>>esc;
if(esc==1)
{
return 0;
}
else
{
goto chonglai;
}
}
已经修改完毕,不知道是不是你想要的样子!是的话请采纳O(∩_∩)O哈!