RETURNS THE MODULO OF X AND Y
ACTION
The function MOD(X,Y) returns the modulo of X and Y.
The modulo of X and Y is the remainder of X by Y integer division.
X and Y can be a real or integer number. If X or Y is a real number, it is rounded to the nexter integer.
SYNTAX:
Result=MOD(X,Y)
USE ERROR EXAMPLE
print mod(70, 60)
print "Result = 10"
MOD()
MOD(X,Y)
SEE ALSO
INT()
FRAC()