The two roots of a quadratic equation ax 2 + bx + c = 0 can be obtained using the following formula: b 2 -

Answered step by step
Verified Expert Solution
Question
66 users unlocked this solution today!

The two roots of a quadratic equation ax2 + bx + c = 0 can be obtained using the following formula:

image

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.

image

-b + VB - 4ac 4ac -b and 2 = 2a 2a Enter a, b, c: 1.0 3 1 JEnter The equation has two roots -0.381966 and -2.61803 Enter a, b, c: 1 2.0 1 PEnter The equation has one root -1 Enter a, b, c: 1 2 3 PEntar The equation has no real roots

Step by Step Solution

3.46 Rating (172 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Link Copied!

Step: 1

Program to calculate the roots of an equation with 3 variables a b c compile javac r... View full answer

blur-text-image
Question Has Been Solved by an Expert!

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

100% Satisfaction Guaranteed-or Get a Refund!

Step: 2Unlock detailed examples and clear explanations to master concepts

blur-text-image_2

Step: 3Unlock to practice, ask and learn with real-world examples

blur-text-image_3

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

  • tick Icon Access 30 Million+ textbook solutions.
  • tick Icon Ask unlimited questions from AI Tutors.
  • tick Icon Order free textbooks.
  • tick Icon 100% Satisfaction Guaranteed-or Get a Refund!

Claim Your Hoodie Now!

Recommended Textbook for

Introduction to Java Programming, Comprehensive Version

Authors: Y. Daniel Liang

10th Edition

133761312, 978-0133761313

flashcard-anime

Study Smart with AI Flashcards

Access a vast library of flashcards, create your own, and experience a game-changing transformation in how you learn and retain knowledge

Explore Flashcards

Students Have Also Explored These Related Java Programming Questions!