Computer Applications

Write a Java expression for the following:
       |x2 + 2xy|

Java Math Lib Methods

ICSE 2019

38 Likes

Answer

Math.abs(x * x + 2 * x * y)

Answered By

23 Likes


Related Questions