This is the exact quote from my book...
Quote:
Modulo returns the integer remainder of a division.
Here are two examples:
5 % 2 = 1
6 % 2 = 0
The modulo operator does not work with data types that have decimals, such as Real or
Number.
|
It took me a little while to first figure out the function (math is not my strong point) but my question is how often does the need to use this particular operator come up? It seems to me that it wouldn't be useful in very many situations but then again.. I am still learning:)
Thanks in advance to any who can shed some light!