Todayโs Outline
- Loop
- Programming styles for control flow
Loop
while
do-while
- do-while is better suited for loops that require at least one iteration
for
goto statement
- bad programming practice
- can be replaced with
break
and continue
Short-Circuit Evaluation with goto
Programming styles for control flow
- Indentation
- if Condition Style