Question: 2. 6 Q3 Solving quadratic equation Write a C program, named quadratic.c, to solve the quadratic equation ax2 + bx + C = 0 of



2. 6 Q3 Solving quadratic equation Write a C program, named quadratic.c, to solve the quadratic equation ax2 + bx + C = 0 of given coefficients a, b and c When running the program, it prompts for the input of coefficients a, b, c as the float type numbers. After inputting three float numbers, it computes and prints out the solutions, then prompts for another round of inputting. Your program will quit when getting input 0,0,0. Your program should handle four situations 1. a-0, not a quadratic equation; 4ac = 0, the equation has two equal roots; 3.62 4ac 0, the equation has distinct real roots. Your program should be robust for invalid inputs. The output formats of different coefficients should be as shown in the following test Public test gcc quadratic.c -o quadratic quadratic Please enter the coefficients a,b,c 1,2,1 The equation has two equal real roots X:-1.000000 Please enter the coefficients a,b,c 1, 2,2 The equation has two complex roots real: -1.000eee imaginary:1.000000 Please enter the coefficients a,b,c 2,6,1 The equation has two distinct real roots X1-0.177124 X2: 2.822875 LOM Public test gec quadratic.c -o quadratic quadratic Please enter the coefficients a, b, 1,2,1 The equation has two equal real roots X:-1.000000 Please enter the coefficients a,b,c 1,2,2 The equation has two complex roots. real:-1.000000 imaginary:1.000000 Please enter the coefficients a,b,c 2,6,1 The equation has two distinct real roots x1:-0.177124 X2: -2.822875 Please enter the coefficients a, b,c 0,1,2 input:not a quadratic equation Please enter the coefficients a, b, c a, a, a input: Invalid input Please enter the coefficients a,b,c 12 input: Invalid input Please enter the coefficients a, b, 8,9,0 Input:quit Create program file quadratic c, refer to the following programming structure. // program signature #include
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
