Computer Science, asked by sampath3363lhs, 1 month ago

Write a java expression for the following mathematical operations: a) z= x ²y³/xy+xy²​

Answers

Answered by kartikagnihotri32
0

Answer:

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

Explanation:

mark as brainliest

Similar questions