Question: Write a JAVA program that will prompt the user to enter three parameters (a, b, c) for a quadratic equation (ax^2+bx+c). Then the program should
Write a JAVA program that will prompt the user to enter three parameters (a, b, c) for a quadratic equation (ax^2+bx+c). Then the program should compute the roots using the following equations: x1 = (-b+sqrt(b^2-4ac))/2a x2 = (-b - sqrt(b^2-4ac))/2a Finally the program should print the two values
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
