Nested For Loop : For « Statements « VB.Net Tutorial






Option Strict On
 Imports System
 Module Module1

    Sub Main( )

       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 'Main

 End Module
3 * 10 = 30
3 * 11 = 33
3 * 12 = 36
4 * 10 = 40
4 * 11 = 44
4 * 12 = 48
5 * 10 = 50
5 * 11 = 55
5 * 12 = 60
6 * 10 = 60
6 * 11 = 66
6 * 12 = 72








4.6.For
4.6.1.For To Next Loop
4.6.2.Using For/Next structure to demonstrate summation.
4.6.3.Calculating compound interest.
4.6.4.For loop with float point control number
4.6.5.Set For Loop float Step
4.6.6.Nested For Loop
4.6.7.Float step
4.6.8.Calculated step
4.6.9.Exit For 1