Computer Science, asked by urva283838383, 7 months ago

write a java statement to calculate and print 5th root of 1000​

Answers

Answered by BrainlyProgrammer
2

Answer:

double c=0.0;

c=Math.pow(1000,(1/5));

im not sure about this........try this in ur computer.....if this is correct mark me brainliest

Explanation:

Answered by anindyaadhikari13
79

Question:-

Write a Java statement to calculate and print the 5th root of 100

Statement:-

 \sf \sqrt[5]{100}  =  {100}^{ \frac{1}{5} }

So, the statement will be,

double sq=Math.pow(100,1.0/5.0);

System.out.println(sq);

Similar questions