⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 5-1 (8).c

📁 有关c语言的说课的课件,内容丰富多彩,值得借鉴
💻 C
字号:
  #include  <stdio.h>
 #include  <math.h>
     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);
		}
}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -