Computer Science, asked by monikasharma8288, 7 months ago

write the corresponding expression for. 1) z=x cube + y cube +xy/ z​

Answers

Answered by Anonymous
2

Answer:

In Java the following expression will be written as:

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

Similar questions