write a java statement to calculate and print 5th root of 1000
Answers
Answered by
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
79
Question:-
Write a Java statement to calculate and print the 5th root of 100
Statement:-
So, the statement will be,
double sq=Math.pow(100,1.0/5.0);
System.out.println(sq);
Similar questions