Compute the exponentiation of various numbers to different powers.
System. |
The pow() method computes the exponentiation of one number to the power of another.
public
|
Parameter |
Description |
base |
Please specify the base of the operation. |
exponent |
Please specify the exponent of the operation. |
Returns: |
A double value representing the result of raising the base to the power of the exponent. |
Java Version: |
Any |