■ While ~ Wend문을 사용하는 방법을 보여준다.
▶ 예제 코드 (VB)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
Dim pArray As Variant Dim I As Integer pArray = Array(11, 12, 13, 14, 15, 6, 7, 8, 9, 10) I = 0 While I < 10 If pArray(I) > 10 Then Print Str(pArray(I)) & " is Big"; Else Print Str(pArray(I)) & " is Small"; End If Print I = I + 1 Wend |