Home »
VB.Net »
VB.Net Programs
VB.Net program to print the ASCII values of numbers from 1 to 5 using the GoTo statement
By Nidhi Last Updated : November 16, 2024
Printing the ASCII values of numbers from 1 to 5 using the GoTo statement in VB.Net
Here, we will print the ASCII values of numbers from 1 to 5 using the "GoTo" statement and Asc() function.
Program/Source Code:
The source code to print the ASCII values of numbers from 1 to 5 using the "GoTo" statement is given below. The given program is compiled and executed successfully.
VB.Net code to print the ASCII values of numbers from 1 to 5 using the GoTo statement
'VB.Net program to print the ASCII values of
'numbers from 1 to 5 using "GoTo" statement.
Module Module1
Sub Main()
Dim num As Integer = 0
MyLabel:
num = num + 1
If num <= 5 Then
Console.WriteLine("Num:{0}, Ascii value:{1}", num, Asc(num))
GoTo MyLabel
End If
End Sub
End Module
Output:
Num:1, Ascii value:49
Num:2, Ascii value:50
Num:3, Ascii value:51
Num:4, Ascii value:52
Num:5, Ascii value:53
Press any key to continue . . .
Explanation:
In the above program, we created a module Module1 that contains a Main() method. In the Main() method, we created a variable num of Integer type, which is initialized with 0. Then we created the label MyLabel, which is used to transfer program control using the "GoTo" statement. Then we increased the value of variable num by one till 5.
If num <= 5 Then
Console.WriteLine("Num:{0}, Ascii value:{1}", num, Asc(num))
GoTo MyLabel
End If
In the above code, program control will transfer each time until the value of variable num is less than equal to 5 and print the number and its corresponding ASCII value on the console screen.
VB.Net Basic Programs »