Computer Applications

Write the Java expressions for the following: √(mn) + ∛(m + n)

Java Operators

38 Likes

Answer


Math.sqrt(m * n) + Math.cbrt(m + n)

Answered By

23 Likes


Related Questions