Simple types / Numbers / Mathematical operations
Exponentiation
Square root
min and max values
Logarithm
Decimal logarithm
Sine, cosine and tangent
double
number =
8.0
;
double
power =
3.0
;
double
result =
pow
(number, power);
//result is 512.0