📜  带负数的模限制 Java 代码示例

📅  最后修改于: 2022-03-11 14:52:17.355000             🧑  作者: Mango

代码示例1
int mod(a, b) {
  c = a % b
  return (c < 0) ? c + b : c
}