Question: Exercise2: Write the program to the roots of quadratic equation. You may assume the x2 co-efficient is not zero. If the discriminate is negative display
Exercise2: Write the program to the roots of quadratic equation. You may assume
the x2
co-efficient is not zero. If the discriminate is negative display message stating
that there are no solutions.
For the above said question, create a class QuadarticEquation which has three
instance variable of type int and performs the following.
a) Provide a constructor that receives the co-efficients for three variables of the
quadratic equation and initializes the instance variables.
b) Provide a static method name roots to calculate and display the roots of the
equation.(Hint: ,use sqrt method which is Math class)
Create a class QuadraticEquationTest and performs the following.
a. Prompt the user to read values for a, b and c.
b. Create an object for the class QuadraticEquation
c. Call the method roots using the class name.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
