Write the Java statement
To find R raised to the power 1/5.
Answers
Answered by
8
◇ Required answer :-
The java.lang.Math.pow() is used to calculate a number raise to the power of some other number. This function accepts two parameters and returns the value of first parameter raised to the second parameter. There are some special cases as listed below:
If the second parameter is positive or negative zero then the result will be 1.0.
If the second parameter is 1.0 then the result will be same as that of the first parameter.
If
Similar questions