Skip to main content
ICT
Lesson A8 - Control Structures
 
Main   Previous Next
 

B. Control Structures page 4 of 17

  1. There are only three necessary control structures needed to write programs: sequence, selection, and iteration.

  1. Sequence refers to the line-by-line execution as used in your programs so far. The program enters the sequence, does each step, and exits the sequence. This allows for sequences to do only a limited job during each execution.

  2. Selection is the control structure that allows choice among different paths. Java provides different levels of selection:

    • One-way selection with an if structure
    • Two-way selection with an if-else structure
    • Multiple selection with a switch structure

  3. Iteration refers to looping. Java provides three loop structures. These will be discussed in length in Student Lesson A12.

    • while loops
    • do-while loops
    • for loops

 

Main   Previous Next
Contact
 © ICT 2006, All Rights Reserved.