In operators what does "mod" and "round" do/mean? I assumed "round" meant like rounding like 16 rounded by 10 is 20. But there is only one number you can type in it so can somebody please tell me what mod and round does/means?
Offline
() mod () - 1st input is the number to be divided. 2nd input is the divisor. The reporter will report the remainder when the 1st input is divided by the 2nd input.
round () - Rounds off the number in the input to a whole number; removing any decimals.
Offline