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