VB.Net Tutorial/Statements/Counter Controlled Repetition

Материал из VB Эксперт
Версия от 12:54, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

Using the For/Next structure to demonstrate counter-controlled repetition.

Module Tester
    Sub Main()
        Dim counter As Integer
      For counter = 2 To 10 Step 2
         Console.Write(counter & " ")
      Next
    End Sub 
End Module
2 4 6 8 10

Using the While structure to demonstrate counter-controlled repetition.

Module Tester
    Sub Main()
        Dim counter As Integer = 2
      While counter <= 10 
         Console.Write(counter & " ")
         counter += 2 
      End While
    End Sub 
End Module
2 4 6 8 10