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.

39,926 questions

51,859 answers

573 users

How to use select case with a given range in VB.NET

1 Answer

0 votes
Imports System
				
Public Module Module1
	Public Sub Main()
        Console.WriteLine("##########################")
		Console.WriteLine("     a: VB.NET")
        Console.WriteLine("     b: C#")
        Console.WriteLine("     c: C")
        Console.WriteLine("     d: Java")
        Console.WriteLine("##########################")
		
		Console.Write("Select your language: ")
        
		Dim choice As Integer = Integer.Parse(Console.ReadLine())

        Select Case choice
            Case 1
                Console.WriteLine("VB.NET")
            Case 2 To 4
                Console.WriteLine("C#")
            Case 5 To 10
                Console.WriteLine("C")
            Case 11 To 17
                Console.WriteLine("Java")
            Case Else
                Console.WriteLine("Invalid choice")
        End Select
	End Sub
End Module




' run:
'
' ##########################
'      a: VB.NET
'      b: C#
'      c: C
'      d: Java
' ##########################
' Select your language: 7
' C
' 

 



answered Dec 17, 2023 by avibootz
edited Dec 17, 2023 by avibootz

Related questions

1 answer 103 views
1 answer 162 views
162 views asked Oct 22, 2020 by avibootz
1 answer 204 views
2 answers 218 views
218 views asked Sep 23, 2018 by avibootz
1 answer 173 views
1 answer 133 views
1 answer 112 views
112 views asked Dec 17, 2023 by avibootz
...