Computer Applications

Write the Java expressions for the following: |x³ + y² - 2xy|

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