What is Math.pow() in Java?
Answers
Answered by
1
The java.lang.Math.pow(double a, double b) returns the value of the first argument raised to the power of the second argument. Special cases − If the second argument is positive or negative zero, then the result is 1.0. If the second argument is 1.0, then the result is the same as the first argument.
Attachments:
Similar questions