解题思路:
三个函数,g1 g2 g3
主函数进行判断
注意事项:
1,变量类型 double,输出三位小数
2,#include<math.h>
3,g3中的输出表示
参考代码:
#include<stdio.h> #include<math.h> void g1(double a,double b,double c); void g2(double a,double b,double c); void g3(double a,double b,double c); int main() { double a,b,c; scanf("%lf %lf %lf",&a,&b,&c); if((pow(b,2)-4*a*c)==0) g1(a,b,c); else if((pow(b,2)-4*a*c)>0) g2(a,b,c); else g3(a,b,c); return 0; } void g1(double a,double b,double c) { double x1,x2; x1=-b/(2*a); x2=-b/(2*a); printf("x1=%.3lf x2=%.3lf",x1,x2); } void g2(double a,double b,double c) { double x1,x2; x1=(-b+sqrt(pow(b,2)-4*a*c))/(2*a); x2=(-b-sqrt(pow(b,2)-4*a*c))/(2*a); printf("x1=%.3lf x2=%.3lf",x1,x2); } void g3(double a,double b,double c) { double m,n; m=(-b)/(2*a); n=(sqrt(4*a*c-pow(b,2)))/(2*a); printf("x1=%.3lf+%.3lfi x2=%.3lf-%.3lfi",m,n,m,n); }
0.0分
1 人评分
程序员的表白 (C语言代码)浏览:1466 |
C语言训练-求矩阵的两对角线上的元素之和 (C语言代码)浏览:620 |
人见人爱A+B (C语言代码)浏览:664 |
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:691 |
字符串的输入输出处理 (C语言代码)浏览:1021 |
1157题解浏览:769 |
K-进制数 (C语言描述,蓝桥杯)浏览:955 |
C语言程序设计教程(第三版)课后习题5.6 (C语言代码)浏览:537 |
杨辉三角 (C语言代码)浏览:505 |
2^k进制数 (C语言描述,蓝桥杯)浏览:1457 |