模运算计算器

    计算除法的余数

    公式

    a mod b = a - b × floor(a/b)

    The remainder after integer division.

    示例

    17 mod 5

    = 2 (17 = 5×3 + 2)

    常见问题

    关于 模运算计算器

    Calculate the remainder of division (modulo operation).