Computer Science, asked by malkajgiriharshitha2, 5 months ago

1. WRITE JAVA EXRESSION FOR THE FOLLOWING:

Z=X3+Y3 – XY/W​

Answers

Answered by BrainlyProgrammer
3

Answer:

i think ur Question is Z=X³+Y³-XY/W

Answer:

Z=Math.pow(X,3)+Math.pow(Y,3)-(X*Y)/W;

Answered by anindyaadhikari13
2

Question ?

  • Write the Java expression for the following.

Answer:-

Given expression,

Z=X³+Y³-XY/W

The Java expression for the following will be,

Z=Math.pow(X, 3)+Math.pow(Y,3)+(X*Y)/W;

Similar questions