Computer Science, asked by asmita2085, 2 months ago

write the java statement ,to find the cube root of difference a to power 5 and b to power 3

Answers

Answered by Anonymous
1

Answer:

Math.cbrt(Math.pow(a,5)Math.pow(b,3));

Similar questions