LibreOfficeDev 25.2 Help
tUDMG‖Performs the integer division on two numbers and returns the result.
X3zBX‖
23cKM‖result = expression1 \ expression2
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.
Sub IntegerDivision
Fh4jV‖ Print 5 \ 4 , 5 / 4 ' 1 , 1.25
PRZgY‖ Print 7 \ 4 , 7 / 4 ' 1 , 1.75
End Sub