vVB6, like most languages, has several iteration
statements. We’ll just use one in CSE/IMT 100:
v
v
v
vThe semantics are as follows:
oThe termination condition is tested and if it is false
the statements are all skipped; execution
continues after Loop
oIf it is true, the statements are performed once
oThe termination condition is tested again, and if it is
false the loop is over and the statements
are skipped; continue after Loop
oIf it is true, the statements are performed a second
time
o…
o