How to print the bits of an integer in 8 bit format with Java

1 Answer

0 votes
public class MyClass {
    public static void main(String args[]) {
        int num = 17;

        System.out.println(String.format("%8s", Integer.toBinaryString(num)).replaceAll(" ", "0"));
    }
}





/*
run:

00010001

*/

 



answered Jan 9, 2023 by avibootz

Related questions

1 answer 121 views
1 answer 109 views
1 answer 98 views
1 answer 103 views
1 answer 100 views
...