Returns the integer part of the argument.
FIX (argument)
└──┬───┘
Numeric expression
*The parenthesis enclosing the argument can be omitted when the argument is a numeric value of variable.
FIX(-1.5)
argument: Numeric expression
Returns the integer part of the argument.
10 INPUT A
20 PRINT "FIX(";A;")=";FIX A
30 GOTO 10
Displays the integer part of input values.