How to calculate the total of all possible binary options of N bits in VB.NET

1 Answer

0 votes
Imports System
 
Public Class Program
    Public Shared Sub Main()
        Dim N As Integer = 4
        Console.WriteLine(1 << N)
         
        N = 5
        Console.WriteLine(1 << N)
         
        N = 6
		Console.WriteLine(Math.Pow(2, N))
    End Sub
End Class
 
 
 
 
 
' run:
'
' 16
' 32
' 64
'
  

 



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

Related questions

...