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

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,111 questions

40,781 answers

573 users

How to generate binary numbers from 1 to N in VB.NET

Learn & Practice SQL


83 views
asked Jul 23, 2020 by avibootz
edited Jul 23, 2020 by avibootz

1 Answer

0 votes
Imports System
				
Public Module Module1
	Public Sub generateBinaryNumbers(n As Integer) 
		For i As Integer = 1 To n
            Console.WriteLine(Convert.ToString(i, 2))
		Next
	End Sub
	Public Sub Main()
		Dim n As Integer = 15
 
        generateBinaryNumbers(n)
	End Sub
End Module



' run:
'
' 1
' 10
' 11
' 100
' 101
' 110
' 111
' 1000
' 1001
' 1010
' 1011
' 1100
' 1101
' 1110
' 1111
'

 





answered Jul 23, 2020 by avibootz

Related questions

2 answers 147 views
3 answers 145 views
1 answer 82 views
1 answer 37 views
1 answer 85 views
...