Mod/Quot Remainder Extraction
If you need to extract the modulus remainder or to calculate the quotient you can use the following functions.
###a### quot ###b### = ###=(a quot b)### | quotient |
###a### mod ###b### = ###=(a mod b)### | modulus |
They are quite simple in use and don't require long additional explanations. For example, if you set the values randomization for your mod/quot operation 1 to 15 and 1 to 20 consequently for the two variables, one of the possible variations of the problem would be as below.
6 quot 13 = 0
6 mod 13 = 6
No Comments