Modulo -Beschränkung mit negativen Zahlen Java int mod(a, b) { c = a % b return (c < 0) ? c + b : c }