double pow(double base, double exponent)
Returns baseexponent or the value of the base argument raised to the power of the exponent argument.
Input Parameters
base | Integer The base. |
exponent | Integer The exponent. |
Return Value
Integer The value of baseexponent. |