How to calculate the total of all possible binary options of N bits in C#

1 Answer

0 votes
using System;
  
class Program
{
    static void Main() {
        int N = 4;
        Console.WriteLine(1 << N); // = 2 ^ N
         
        N = 5;
        Console.WriteLine(1 << N); // = 2 ^ N
         
        N = 6;
        Console.WriteLine(Math.Pow(2, N));
    }
}
  
  
  
  
  
/*
run:
  
16
32
64
  
*/

 



answered Aug 25, 2023 by avibootz
edited Aug 26, 2023 by avibootz

Related questions

...