Control Structures
Structured programming requires only three forms of control:
Sequence·
Selection is implemented in one of three ways:
· If/Then structure (single selection)
· If/Then/Else structure (double selection)
· Select Case structure (multiple selection)

Repetition is implemented in one of six ways:
· While/Wend structure
· Do While/Loop structure
· Do/Loop While structure
· Do Until/Loop structure
· Do/Loop Until structure
· For/Next structure

