KnowledgeBoat Logo
|

Computer Applications

Write the Java expression for the following:

∣x3+y2−2xy∣\lvert x^3 + y^2 -2xy\rvert

Java Math Lib Methods

30 Likes

Answer


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

Answered By

13 Likes


Related Questions