Problem:
Question- Design a java program in eclipse that prompts the user to enter values for a, b, and c ad displays the result of the discriminate. If the discriminate is positive, display two roots. If discriminate is 0, display one root. (b^2 - 4ac is called discriminate). You need to use Math.pow(base, exponent) method.
Describe the java program in eclipse that prompts the user to enter values.