wFv3P‖"\" Operator

tUDMG‖Performs the integer division on two numbers and returns the result.

X3zBX‖

FVEx2‖Syntax:


   23cKM‖result = expression1 \ expression2 

WADQ4‖Parameters:

Bw7ky‖ result: A numerical value that contains the result of the integer division.

rCTEL‖ expression1, expression2: Dividend and diviser operands of the integer division.

sxofZ‖Before division both operands are rounded to whole numbers. The fractional part of the result is dropped.

EFSA4‖Example:


Sub IntegerDivision
Fh4jV‖    Print 5 \ 4 , 5 / 4   ' 1 , 1.25
PRZgY‖    Print 7 \ 4 , 7 / 4   ' 1 , 1.75
End Sub