Sunday, May 15, 2011

Visual Basic Looping 2. Do/Loop While




Sum = 1
Do
  Debug.Print Sum
  Sum = Sum + 3
Loop While Sum <= 50

This loop repeats While the Variable Sum is less than or equal to 50.  Note, since the While check is at the end of the loop, a Do/Loop While structure is always executed at least once.
.

No comments:

Post a Comment