#include<stdio.h>
#include<math.h>
float disc,x1,x2;
int main()
{
void greater_than_zero(float a,float b);
void equal_to_zero(float a,float b);
void smaller_than_zero(float a,float b);
float a,b,c;
char z;
int flag=1;
while(flag)
{
scanf("%f%f%f",&a,&b,&c);
disc=b*b-4*a*c;
if(disc>0)
greater_than_zero(a,b);
if(disc==0)
equal_to_zero(a,b);
if(disc<0)
smaller_than_zero(a,b);
printf("continue or not(Y/N)?");
scanf(" %c",&z);
if(z=='n'||z=='N')
flag=0;
}
return 0;
}
void greater_than_zero(float a,float b)
{
x1=(-b+sqrt(disc))/(2*a);
x2=(-b-sqrt(disc))/(2*a);
printf("x1=%f,x2=%f\n",x1,x2);
}
void equal_to_zero(float a,float b)
{
x1=x2=-b/(2*a);
printf("x1=%f,x2=%f\n",x1,x2);
}
void smaller_than_zero(float a,float b)
{
printf("x1=%f+%fi\n",-b/(2*a),sqrt(-disc)/(2*a));
printf("x1=%f-%fi\n",-b/(2*a),sqrt(-disc)/(2*a));
}
求根
最新推荐文章于 2023-11-29 12:59:15 发布