Question: Please write your own source code and make sure the code compiles. C++ Programming . Quadratic Root Tool. QuadraticRootTool.cpp The roots of a quadratic equation

Please write your own source code and make sure the code compiles. C++ Programming. Quadratic Root Tool. QuadraticRootTool.cpp The roots of a quadratic equation in the form a x^2 + b x + c = 0 can be obtained using these formulas:

Please write your own source code and make sure the code compiles.

C++ Programming. Quadratic Root Tool. QuadraticRootTool.cpp The roots of a quadratic equation is called the discriminant of the quadratic equation. If it is positive, the equation has two real roots; if it is zero, the equation has one root. If it is negative, the equation has no real roots.

Write a program that prompts the user to enter values for a, b, and c and displays the result based on the discriminant. If the discriminant is positive, display two roots. If the discriminant is 0, display one root. Otherwise, display "The equation has no real roots."

Note that you can use sqrt(x) (#include ) to compute square root of x.

Here are some sample runs; please match this output format EXACTLY (matching at least 4 decimal places). This means the output must list r1 (the positive root) first if there are two roots:

Here is a sample run:

Enter a, b, c: 1.0 3 1

The equation has two roots: -0.38166 and -2.61803

Enter a, b, c: 1 2.0 1

The equation has one root: -1

Enter a, b, c: 1 2 3

The equation has no real roots.

2a. 4ac

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!