Skip to content

Instantly share code, notes, and snippets.

@OutOfBrain
Created October 27, 2015 21:46
Show Gist options
  • Select an option

  • Save OutOfBrain/da7b091e73a5b620554d to your computer and use it in GitHub Desktop.

Select an option

Save OutOfBrain/da7b091e73a5b620554d to your computer and use it in GitHub Desktop.
Another binary print
class BinaryPrint {
static void print(int number) {
int mask = 1<<31;
while ((number <<= 1) != 0) {
System.out.print(((number & mask) != 0) ? 1 : 0);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment