pow

The pow method returns the value of x to the power of y.

 

Syntax

System.Double pow( x,  y);

 

Parameters

x

Base.

y

Exponent.

 

Return Value

Returns the result of the operation.

 

Remarks

Member of Math.

 

Example