C語言實驗題――一元二次方程 II

  /* 解一元二次方程 */ #include<stdio.h> #include<math.h> void swap(double *x,double *y) { double t=*x; *x=*y; *y=t; } int main() { double a,b,c,tai,x1,x2; scanf("%lf %lf %lf",&a,&b,&c); if(a<0) a*
相關文章
相關標籤/搜索