ID : 628
^ Operator
Function
To obtain the exponent of numeric values.
Syntax
number ^ exponent
Guaranteed entry
- number
- Designate the radix.
- exponent
- Designate the exponent.
Return value
Return the calculation result.
Description
The exponent of numeric values is obtained.
Related Terms
Operators, & Operator, * Operator, + Operator, - Operator, / Operator, = (Assignment) Operator, And Operator, Comparative Operators, Mod Operator, Not Operator, Or Operator, Xor Operator, \ Operator, >> Operator, << Operator
Attention
Only when the formula exponent is integer, a negative value can be designated in the formula number.
When more than one exponential operations is performed in one formula, the ^ operators are evaluated in order from the left to the right.
Example
-
ID : 628