2/6/00
COM1100 Winter2000 Yuhong Yin
9
continue
statement
n
The
continue
statement cause immediate loop
iteration, skipping the rest of the loop statements.
n
Jumps to the loop test when used with while or do-while
n
Jump to loop update, then test when used with used
with for
n
Does not exist the loop(unless next loop test is
false)
n
n