< Futurebasic < Language < Reference
MOD
Syntax
remainder = expr MOD modulus
Description
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
Appendix D: Numeric Expressions
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.