Computer Science, asked by udevi4470, 9 months ago

2. Write the following as Java expressions.
(a) root a2 - b2
(b) π(x6 - y6)
(c)4/3πr3
(d)|z4 -1|​

Answers

Answered by DarkRangerZen
40

Answer:

Mark as branliest

a)Math.sqrt(Math.pow(a,2)-Math.pow(b,2));

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

c)(4.0/3.0)*(22.0/7.0)*(Math.pow(r,3));

Answered by jsprashantchouhan
20

Explanation:

Math.sqrt(a*a - b*b)

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

(4.0/3.0)*(22.0/7.0)*(Math.pow(r,3))

Math.abs(z*z*z*z - 1)

Similar questions