KnowledgeBoat Logo
|
LoginJOIN NOW

Computer Applications

Write the Java expression for the following:

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

Java Operators

39 Likes

Answer


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

Answered By

24 Likes


Related Questions