CS 3304: Comparative Languages
Control Structures
[
Course Documents
] : [
Control Structures
]
Previous
Contents
Next
Keyword Index
Single-Way Selection
One-way "if" statement
FORTRAN IF:
IF (boolean_expr) statement
Problem: can select only a single statement; to select more, a goto must be used
IF (.NOT. condition) GOTO 20 ... ... 20 CONTINUE