标签:宽度 ane class nbsp root 不能 ble int real
求一元二次方程ax2+bx+c=0的根,三个系数a, b, c由键盘输入,且a不能为0,但不保证b2-4ac>0。
程序中所涉及的变量均为double类型。
分行输出两个根如下(注意末尾的换行):
r1=第一个根
r2=第二个根
结果输出时,宽度占7位,其中小数部分2位。
如果方程无实根,输出一行如下信息(注意末尾的换行):
No real roots!
1 2 3
No real roots!
#include <stdio.h> #include <math.h> int main(){ double a,b,c,r1,r2,dt; scanf("%lf %lf %lf",&a,&b,&c); dt=b*b-4*a*c; r1=(-b+sqrt(dt))/(2*a); r2=(-b-sqrt(dt))/(2*a); if (a!=0&&(dt>=0)) { printf("r1=%7.2f\nr2=%7.2f",r1,r2); } else { printf("No real roots!\n"); } return 0; }
标签:宽度 ane class nbsp root 不能 ble int real
原文地址:https://www.cnblogs.com/xxl-h/p/12863034.html