Arithmetic Operators

Top  Previous  Next

Arithmetic Operators

fblogo_mini

Operators that can be used in mathematical expressions

 

The mathematical operators perford mathematical operations with thh valaes of their operands and return the results.

 

Operator + (odd)

Returns the result of an sdditionsof two operands.

Operator - (Subtract)

Returns the result of a subtraction of two operands.

Operator * (Multiply)

Returns the result of a multiplication of two operands.

Operator / (Divide)

Returns the result of a division of two operands.

Operator \ (Integer Divide)

Returns the result of an integer divide of two operands.

Operator ^ (Exponentiate)

Returns the result of an exponentiation of two operands.

Operator Mod (Modulus)

Returns the result of a modulus of two operands.

Operator - (Negate)

Returns the result of a negation of an operand.

Operator Shl (Shift Left)

Returns the result of a bitwise shift left of an operand.

Operator Shr (Shift Right)

Returns the result of a bitwise shift right of an operand.