KnowledgeBoat Logo

Computer Applications

Write the Java expression for the following:

mn+m+n3\sqrt{mn} + \sqrt[3]{m + n}

Java Operators

38 Likes

Answer


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

Answered By

23 Likes


Related Questions