Write a program in a script file that determines the real roots of a quadratic equation ax2

Question:

Write a program in a script file that determines the real roots of a quadratic equation ax2 + bx + c = 0. Name the file quadroots. When the file runs, it asks the user to enter the values of the constants a, b, and c. To calculate the roots of the equation the program calculates the discriminant D, given by:
D = b2 - 4ac
If D > 0, the program displays message "The equation has two roots," and the roots are displayed in the next line.
If D = 0, the program displays message "The equation has one root," and the root is displayed in the next line.
Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Related Book For  book-img-for-question
Question Posted: