Returns the largest integer which does not exceed the value of the argument.
INT (argument)
└──┬───┘
Numeric expression
*The parenthesis enclosing the argument can be omitted when the argument is a numeric value of variable.
INT(1.3)
argument: Numeric expression
10 FOR I=1 TO 10
20 N = RAN# * 10
30 LPRINT "INT(";N;")=";INT N
40 NEXT I
50 END
Converts random values to integers and outputs results to printer.