#include
#include
 void main()
  {
  	float a,b,c,disc,x1,x2,realpart,imagpart;
  	scanf ("%f,%f,%f",&a,&b,&c);
  	printf("The equation" );
  	if(fabs(a)<=1e-6)
  	   printf("is not a quadratic\n");
  	else 
  	   {
  	       disc=b*b-4*a*c;
  	       if(fabs(disc)<=1e-6)
  	          printf("has two equal roots:%8.4f\n",-b/(2*a));
  	       else
  	          if(disc>1e-6)
  	       {
  	     	x1=(-b+ sqrt(disc))/(2*a);
  	     	x2=(-b-sqrt(disc))/(2*a);
  	     	printf("has distinct real roots:%8.4f and%8.4f\n",x1,x2);
  	       }
  	       else
  	       {
  	     	realpart=-b/(2*a);
  	     	imagpart=sqrt(-disc)/(2*a);
  	     	printf("has complex roots:\n");
  	     	printf("%8.4f+%8.4fi\n",realpart,imagpart);
  	     	printf("%8.4f-%8.4fi\n",realpart,imagpart);
  	     	
  	       }
  	 	
  	   }
  	printf("2013304137");
  	}
 
 
 
编写程序时,先分析各种情况下的结果;其次还要注意for、else函数的应用。

 
					
				
 
			
			
			
						
			 
					
				 我要赚赏金
 我要赚赏金 STM32
STM32 MCU
MCU 通讯及无线技术
通讯及无线技术 物联网技术
物联网技术 电子DIY
电子DIY 板卡试用
板卡试用 基础知识
基础知识 软件与操作系统
软件与操作系统 我爱生活
我爱生活 小e食堂
小e食堂

