In java when you do
a % b
If a is negative, it will return a negative result, instead of wrapping around to b like it should. What's the best way to fix this? Only way I can think is
a < 0 ? b + a : a % b
|
In java when you do
If a is negative, it will return a negative result, instead of wrapping around to b like it should. What's the best way to fix this? Only way I can think is
|
|||||||||||||||||
|
|
It behaves as it should a % b = a - a / b * b; i.e. it the remainder. You can do (a % b + b) % b |
|||