You're getting a negative number and not a positive because the byte primitive (as is short, int, long, etc.) is signed - so the most significant bit is flipped so it represents a negative number (using two's complement.) Invert all the bits on a positive number and it'll become negative (and vice versa.)
That said, you wouldn't get 3 anyway if it didn't - 5 is 101 in binary, which would produce 010 (2, not 3.)
As to why it has to be put in an int, from memory that's because the JLS states that all integer arithmetic has a return type of "at least" an int. It's the same reason as if you do byte b = 1+1 it still won't work, even though the result clearly fits into a byte.