fork download
  1. Imports System
  2.  
  3. Public Class Test
  4. Public Shared Sub Main()
  5. ' your code goes here
  6.  
  7. Dim Options() As String = {"00000000", "11111111"}
  8. For x As Integer = 0 To 2
  9. For y As Integer = 0 To 2
  10. Console.writeline(Options(x) & " " & Options(y))
  11. Next
  12. Next
  13.  
  14. End Sub
  15. End Class
Runtime error #stdin #stdout #stderr 0.03s 27064KB
stdin
Standard input is empty
stdout
00000000 00000000
00000000 11111111
stderr
Unhandled Exception:
System.IndexOutOfRangeException: Array index is out of range.
  at Test.Main () [0x00000] in <filename unknown>:0 
[ERROR] FATAL UNHANDLED EXCEPTION: System.IndexOutOfRangeException: Array index is out of range.
  at Test.Main () [0x00000] in <filename unknown>:0