Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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
share|improve this question
6  
There's no "right" modulus behaviour when dealing with negative numbers - a lot of languages do it this way, a lot of languages do it different, and a few languages do something completely different. At least the first two have their pros and cons. – delnan Dec 10 '10 at 18:46
2  
this is just weird for me. i thought it should only return negative if b is negative. – DeaDEnD Dec 10 '10 at 18:55
it is. but the title of that question should be renamed. i wouldn't click that question if i was searching for this one because i already know how java modulus works. – DeaDEnD Dec 10 '10 at 19:20
1  
I just renamed it to that from "Why is -13 % 64 = 51?", which would never in a million years be anything someone would search on. So this question title is much better, and much more searchable on keywords like modulus, negative, calculation, numbers. – Erick Robertson Dec 10 '10 at 19:23

1 Answer

It behaves as it should a % b = a - a / b * b; i.e. it the remainder.

You can do (a % b + b) % b

share|improve this answer
this works better thanks. and it works for negative numbers that are much larger than b too. – DeaDEnD Dec 10 '10 at 18:55
this is a really good answer! as close to elegant as java will let you go, I think – mfrankli Oct 25 '12 at 0:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.