Tagged Questions
3
votes
7answers
1k views
How can I invert bits of an unsigned byte in Java?
I am trying to write a decoder for a very simple type of encryption. Numbers from 0-255 are entered via Scanner, the bits are inverted, and then converted to a character and printed.
For example, ...
1
vote
7answers
1k views
why C, C++, Java does not use one complement?
I heard C, C++, Java uses two complements for binary representation. Why not use 1 complement? Is there any advantage to use 2 complement over 1 complement?