Question: Compute quadratic equation roots Listen Hide Folder Information Instructions Write a JAVA program that will prompt the user to enter three parameters (a, b, c)
Compute quadratic equation roots Listen Hide Folder Information Instructions 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
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
