Control Flow - StarShipTutor/StarshipTutorAPCS GitHub Wiki
Control Flow
Control flow allows you to select which blocks of code get executed and in which order.
- Branches - allow you to select which blocks of code to execute
- Loops - allow you to repeat blocks of code
- Methods - allow you to isolate or hide blocks of code for reliability and simplicity
- Control Flow and Interaction with Variables