Futurebasic/Language/Reference/mod

From Wikibooks, open books for an open world
Jump to navigation Jump to search

MOD[edit | edit source]

Syntax[edit | edit source]

remainder = expr MOD modulus

Description[edit | edit source]

The MOD operator subtracts from ABS(expr) the largest multiple of ABS(modulus) which is less than or equal to ABS(expr), and returns the result as remainder. If expr is negative, then a negative result is returned in remainder.

Note that if expr and modulus are both integers, the result of MOD is just the remainder of the integer division operation expr / modulus.

See Also[edit | edit source]

Appendix D: Numeric Expressions