Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,14 @@
|
|||
Module Program
|
||||
Sub Main()
|
||||
Console.WriteLine("Enter two space-delimited integers:")
|
||||
Dim input = Console.ReadLine().Split()
|
||||
Dim rows = Integer.Parse(input(0))
|
||||
Dim cols = Integer.Parse(input(1))
|
||||
|
||||
' VB uses max-index for array creation.
|
||||
Dim arr(rows - 1, cols - 1) As Integer
|
||||
|
||||
arr(0, 0) = 2
|
||||
Console.WriteLine(arr(0, 0))
|
||||
End Sub
|
||||
End Module
|
||||
Loading…
Add table
Add a link
Reference in a new issue