Problem G: 计算一元二次方程的根v2.0
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:5006
Solved:4141
Description
根据下面给出的求根公式,计算并输出一元二次方程ax2+bx+c=0的两个实根,要求精确到小数点后4位。其中a,b,c的值由用户从键盘输入。如果用户输入的系数不满足求实根的要求,输出错误提示 "error!"。
程序运行结果示例1:
Please enter the coefficients a,b,c:
1,2,1↙
x1=-1.0000, x2=-1.0000
程序运行结果示例2:
Please enter the coefficients a,b,c:
2,6,1↙
x1=-0.1771, x2=-2.8229
程序运行结果示例3:
Please enter the coefficients a,b,c:
2,1,6↙
error!
Input
输入格式: "%f,%f,%f"
Output
输入提示信息:"Please enter the coefficients a,b,c:\n"
输出格式:"x1=%7.4f, x2=%7.4f\n"
输入错误提示信息:"error!\n"
为避免出现格式错误,请直接拷贝粘贴题目中给的格式字符串和提示信息到你的程序中。
Sample Input Copy
1,2,1
Sample Output Copy
Please enter the coefficients a,b,c:
x1=-1.0000, x2=-1.0000