C程序設計第四章

C程序設計第四章 例【4.1】 #include<stdio.h> #include<math.h> int main() { double a,b,c,disc,x1,x2,p,q; printf("請輸入三個數字(以空格分隔):"); scanf("%lf %lf %lf",&a,&b,&c); disc=b*b-4*a*c; if(disc<0) printf("此方程無實根。"
相關文章
相關標籤/搜索