Write java expression for
b + √(b2
- 4ac) / 2a
Answers
Answered by
34
Problem B: Write a Java class ( call it Quadratic) that contains ... (in a return statement) true if (b2-4ac) is negative or false otherwise ... x2 = (- b - Math.sqrt(b * b - 4 * a * c)) / ( 2.0 ...
hope it helps you
mark me BRANLIST
Similar questions