Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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:

image text in transcribed

image text in transcribed 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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Systems Introduction To Databases And Data Warehouses

Authors: Nenad Jukic, Susan Vrbsky, Svetlozar Nestorov

1st Edition

1943153191, 978-1943153190

More Books

Students also viewed these Databases questions