Computer Science, asked by rishita183, 9 months ago

Write the following as Java Expression.

(a) |z⁴-1|

(b) π(x⁶-y⁶)

(c) √(a²-b²)​

Answers

Answered by harshita18839
13

(a)Maths abs×maths pow (z,4)-1

(b)Math.pi(Math.pow(x,6)-Math.pow(y,6))

(c)(Math.sqrt(a)*2) + (b*b)

hope it helps you!!

Similar questions