Nested For Loop
![Nested For Loop](http://www.java2s.com/Code/VBImages/NestedForLoop.PNG)
Imports System
Public Class MainClass
Shared Sub Main(ByVal args As String())
Dim outer As Integer
Dim inner As Integer
For outer = 3 To 6
For inner = 10 To 12
Console.WriteLine("{0} * {1} = {2}", _
outer, inner, outer * inner)
Next inner, outer
End Sub
End Class
Related examples in the same category