gives the same result adding 2+3 and 3+2 due to addition
being "commutative". This is not the case for subtraction. This statement reads
in English "Subtract from variableA the value in variableB", or simply,
"variableA minus variableB". Don't get the order mixed up or you'll have all
kinds of problems. Otherwise, the rules for using "-" are the same as for using
"+".
without sending the result negative. This remainder is the fraction of A left
over from the division. For example, if 23 were divided by 4, the answer would be 5 and
the remainder would be 3. Thus, in CAL, the function (/ 23 4) would result in an answer of
5 and (% 23 4) would result in an answer of 3. Here is how you would use this function to
round of division. Note the following formula for obtaining an average.(= average (/ sum count)) (if (>= (% sum count) (/ count 2)) (++ average))