Imports System.Console Module Module1 Sub Main() Dim keyIn As Integer WriteLine("Enter a number between 1 and 4") keyIn = Val(ReadLine()) Select Case keyIn Case 1 WriteLine("You entered 1") Case 2 WriteLine("You entered 2") Case 3 WriteLine("You entered 3") Case 4 WriteLine("You entered 4") End Select End Sub End Module