CS 3304: Comparative Languages
Control Structures
[
Course Documents
] : [
Control Structures
]
Previous
Contents
Next
Keyword Index
User-Loc. Controls: More Examples
C, C++, Java:
Break: unconditional; for any loop or switch; one level only (except Java)
Continue: skips the remainder of this iteration, but does not exit the loop
FORTRAN 90:
EXIT: Unconditional; for any loop, any number of levels
CYCLE: same as C's continue