計算一元二次方程的根

#include <stdio.h> #include <math.h> #include <stdlib.h> #define EPS 1e-6   int main(int argc, const char * argv[]) {     float a,b,c,disc,p,q;     printf("input the coefficients a,b,c\n");     scanf(
相關文章
相關標籤/搜索