Skip to content

Commit d33b47b

Browse files
authored
gugjh
1 parent 258253c commit d33b47b

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

Module1.vb

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
Module Module1
2+
3+
Sub Main()
4+
Dim x, b As String
5+
Dim a, c As Integer
6+
Dim thisChar As Char
7+
8+
x = "ZAFAR ALI KHAN"
9+
b = "AEIOU"
10+
11+
For c = 1 To Len(x)
12+
thisChar = Mid(x, c, 1)
13+
a = Asc(thisChar)
14+
Console.WriteLine(thisChar & " = " & a)
15+
Next
16+
17+
Console.ReadKey()
18+
End Sub
19+
20+
End Module

0 commit comments

Comments
 (0)