Question: Write a C++ program to find the roots of a quadratic equation of the form Ax^2+ Bx + C = 0. Prompt the user to
Write a C++ program to find the roots of a quadratic equation of the form Ax^2+ Bx + C = 0. Prompt the user to enter the coefficients A, B, and C. The program can only handle real roots; thus, the program must reject the coefficients if the discriminant (B^2 4AC)

Write a C++ program to find the roots of a quadratic equation of the form AX + Bx + C = 0, Prompt the user to enter the coefficients A, B, and C. The program can only handle real roots; thus, the program must reject the coefficients if the discriminant (B-4AC)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
