Advertisement
MCreeper12731

Untitled

Apr 8th, 2022
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.33 KB | None | 0 0
  1. public static void printInvertedBits(int input) {
  2.     if (input < 0) return;
  3.     input = -input;
  4.     StringBuilder bits = new StringBuilder();
  5.     for (int i = 0; i < 32; i++) {
  6.         if ((i + 1) % 4 == 1) bits.insert(0, " ");
  7.         bits.insert(0, (input & 1));
  8.         input = input >> 1;
  9.     }
  10.     System.out.println(bits);
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement