KnowledgeBoat Logo

Computer Applications

Write the Java expression for the following:

x3+y22xy\lvert x^3 + y^2 -2xy\rvert

Java Math Lib Methods

22 Likes

Answer


Math.abs(Math.pow(x, 3) + Math.pow(y, 2) - 2\*x\*y)

Answered By

10 Likes


Related Questions