1. WRITE JAVA EXRESSION FOR THE FOLLOWING:
Z=X3+Y3 – XY/W
Answers
Answered by
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
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
Computer Science,
2 months ago
Science,
2 months ago
Computer Science,
5 months ago
Science,
10 months ago
Science,
10 months ago
Science,
10 months ago