Skip to content
Tristan Hume edited this page Apr 23, 2012 · 3 revisions

#rem

##Syntax rem

##Description The rem (remainder] operator produces the remainder of one number divided by another. For example, 7 rem 2 produces 1 and -12 rem 5 produces -2.

##Example In this example, eggCount is the total number of eggs. The first put statement determines how many dozen eggs there are. The second put statement determines how many extra eggs there are beyond the last dozen.

    var eggCount : int
    get eggCount
    put "You have ", eggCount div 12, " dozen eggs"
    put "You have ", eggCount rem 12, " left over"

##See also infix.html operators, precedence.html of operators and the mod.html and div.html operators.

Clone this wiki locally