Computer Applications

Write the Java expressions for the following: The square root of b² + 4ac

Java Math Lib Methods

5 Likes

Answer


Math.sqrt(b * b + 4 * a * c)

Answered By

1 Like


Related Questions