Computer Applications

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

Java Operators

39 Likes

Answer


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

Answered By

24 Likes


Related Questions