The two roots of a quadratic equation ax 2 + bx + c = 0 can be
Question:
The two roots of a quadratic equation ax2 + bx + c = 0 can be obtained using the following formula:
b2 - 4ac 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 Math.pow(x, 0.5) to compute ?x. Here are some sample runs.
Fantastic news! We've Found the answer you've been seeking!
Step by Step Answer:
Related Book For
Introduction to Java Programming, Comprehensive Version
ISBN: 978-0133761313
10th Edition
Authors: Y. Daniel Liang
Question Posted: