Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a program that prints all real solutions to the quadratic equation ax2+bx+c=0. Read in a, b, c, and use the quadratic formula. If the

Write a program that prints all real solutions to the quadratic equation ax2+bx+c=0. Read in a, b, c, and use the quadratic formula. If the discriminant b2-4ac is negative, display a message stating that there are no real solutions. Implement a class QuadraticEquation whose constructor receives the coefficients a, b, c, of the quadratic equation. Supply methods getSolution1() and getSolution2() that get the solutions, k, using the quadratic formula, or 0 if no solution exists. The getSolution1() method should return the smaller of the two solutions. If no solution exists, handle that with an else in your main, stating that no solution exists. (getSolution1 and getSolution2 will never be called because hasSolutions will be false. Supply a method boolean hasSolutions() that returns false if the discrimanant is negative. Make a tester class want the lowest number to print first.]

must be written in java

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

Data Analysis In Microsoft Excel

Authors: Alex Holloway

1st Edition

B0CCCPKTTX, 979-8852388452

More Books

Students also viewed these Databases questions