KnowledgeBoat Logo

Computer Applications

Write the Java expression for the following:

z=x3+y3+xy3z = x^3 + y^3 + \dfrac{xy}{3}

Java Operators

ICSE 2006

98 Likes

Answer


z = Math.pow(x, 3) + Math.pow(y, 3) + x * y / 3

Answered By

41 Likes


Related Questions