Slide 13
Slide 13 text
Javier Gonzalez-Sanchez | CSE110 | Summer 2020 | 13
Flow of Control
Some programming statements modify that order
(flow of control), allowing us to:
• decide whether to execute a statement, or
• perform a statement over and over, repetitively
These decisions are based on a boolean expression
(also called a condition) that evaluates to true or
false.