Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

40,003 questions

51,950 answers

573 users

How to generate all the binary options of N bits in Java

1 Answer

0 votes
public class MyClass
{
	private static void generateAllBinaryOptions(int N) {
		int total_bits = 1 << N; // = 2 ^ N

		for (int i = 0; i < total_bits; i++) {
			String binary = String.format("%4s", Integer.toBinaryString(i)).replaceAll(" ", "0");

			System.out.println(binary);
		}
	}
	public static void main(String[] args)
	{
		int N = 4;

		generateAllBinaryOptions(N);
	}
}





/*
run:
  
0000
0001
0010
0011
0100
0101
0110
0111
1000
1001
1010
1011
1100
1101
1110
1111
  
*/

 



answered Aug 25, 2023 by avibootz

Related questions

1 answer 108 views
1 answer 100 views
1 answer 107 views
1 answer 103 views
1 answer 101 views
1 answer 113 views
2 answers 142 views
...