KnowledgeBoat Logo

Computer Applications

Write the Java expression for the following:

mn3+mn3\sqrt[3]{mn} + mn^3

Java Math Lib Methods

ICSE

19 Likes

Answer


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

Answered By

16 Likes


Related Questions