Structured Statements Structured statements are built from other statements. Use a structured statement when you want to execute other
statements sequentially, conditionally, or repeatedly.
A compound or with statement simply executes a sequence of constituent statements.
A conditional statement that is an if or case statement executes at most one of its constituents, depending on
specified criteria.
Loop statements including repeat, while, and for loops execute a sequence of constituent statements repeatedly.
33