首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴陈志文的代码贴全部
#include "stdio.h"
 #include "math.h"
 int main()
 {
     float a,b,c,disc,x1,x2,real,imag;
     scanf("%f%f%f",&a,&b,&c);
     if(fabs(a)<1e-6)  {printf("该方程不是二次方程!\n");return;}
     disc=b*b-4*a*c;
     if (fabs(disc)<=1e-6)
     printf("该方程有两个相等的实根: %.4f .\n",-b/(2*a));
     if (disc>1e-6)
     {x1=(-b+sqrt(disc))/(2*a);
......................
阅读全部 | 2014年10月30日 12:18
1
陈志文