Computer Science, asked by blah92, 11 months ago

java expression for
0.05 - 2y3 \div x - y

Answers

Answered by gurukulamdivya
7

Answer:

a=0.05 - (2* math.pow(y,3)) / x -y;

Explanation:

a=0.05 - (2* math.pow(y,3)) / x -y;

math.pow() is used to make exponent of the given number or variable

math.pow(y,3) mean y to the power of 3

; at the end means the java expression has ended

Similar questions