Answered step by step
Verified Expert Solution
Question
1 Approved Answer
C# ONLY, Design (pseudocode) and implement (source code) a class (name it QuadraticEquation) that represents a quadratic equation of the form of ax2+ bx +
C# ONLY,
Design (pseudocode) and implement (source code) a class (name it QuadraticEquation) that represents a quadratic equation of the form of ax2+ bx + x = 0. The class defines the following variables and methods:
- Private data field a, b, and c that represent three coefficients.
- A constructor for the arguments for a, b, and c.
- Three get methods for a, b, and c.
- Method getDiscriminant()returns the discriminant value, which is disc = b2 4ac.
- Method getRoot1() returns first root if the discriminant is not negative. First root is defined as
R1 = (-b + SquareRoot (disc) ) / 2a
- Method getRoot2() returns second root if the discriminant is not negative. Second root is defined as
R2 = (-b - SquareRoot (disc) ) / 2a
Note that if the discriminant values is negative, the roots are Undefined.
Write a test program (name it testEquation) to create objects and test the class methods. Organized your output following these sample runs.
Step 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