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 C#

1 Answer

0 votes
using System;
 
class Program
{
    static void generateAllBinaryOptions(int N) {
        int total_bits = 1 << N; // = 2 ^ N
        
        for (int i = 0; i < total_bits; i++) {
            string binary = Convert.ToString(i, 2).PadLeft(N, '0');
             
            Console.WriteLine(binary);
        }
    }
    static void Main() {
        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
edited Aug 25, 2023 by avibootz

Related questions

1 answer 108 views
1 answer 100 views
1 answer 106 views
1 answer 103 views
1 answer 93 views
1 answer 101 views
...