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:
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. 4acStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started