Computer Applications

Write the Java expressions for the following: ∛(mn) + mn³

Java Math Lib Methods

21 Likes

Answer


Math.cbrt(m * n) + (m * Math.pow(n, 3))

Answered By

17 Likes


Related Questions