September Morn Update
This commit is contained in:
parent
4e2d22a71d
commit
aac6731f2c
6856 changed files with 141342 additions and 21127 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