Chapter 3. Comments on Specific Functions

Mod and IntDiv

Mod gives the remainder of dividing the displayed number by the next input number.

22 Mod 8 = will give the result 6

22.345 Mod 8 = will give the result 6.345

Shift IntDiv does integer division of the displayed number by the next input number.

22 Shift IntDiv 8 = will give the result 2

22.345 Shift IntDiv 8 = also gives 2