Why is 3 modulo 11 equal to 3? The expression in coding syntax is usually

 3 % 11

This is the remainder of dividing 3 by 11, correct? Then the result should be 11 since that would be the remainder. What am I understanding wrong?

有帮助吗?

解决方案

Because

3 / 11 == 0
3 % 11 == 3
0 * 11 + 3 == 3

其他提示

3 / 11 = 0 with 3 remaining. The answer to any n mod m can never be equal to or greater than m, by definition.

      0
    -------
11  | 3
    | 0
    |
    -------
      3 = Answer
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top