From my understanding of modulus division, it will only work on integers. Using modulus returns the remainder of the division, and if you are using doubles for division there is no remainder.
Using 16 and 5 as integers, 16/5 will return a 3, and 16%5 will return the 1 remainder.
Using them as...