Computer Applications

Write the Java expressions for the following: The square root of a + 5b³

Java Math Lib Methods

3 Likes

Answer


Math.sqrt(a +  5 * Math.pow(b, 3))

Answered By

1 Like


Related Questions