Difference between revisions of "Loops"

From CompSciWiki
Jump to: navigation, search
(An Introduction)
(An Introduction)
Line 1: Line 1:
 
==An Introduction==
 
==An Introduction==
 
'''TO DO LIST:'''
 
'''TO DO LIST:'''
 +
* Discuss WHAT a loop is. (Definition)
 
* Types: while, for, do, etc...
 
* Types: while, for, do, etc...
 
* Bottom tested, top tested
 
* Bottom tested, top tested

Revision as of 16:50, 4 March 2007

An Introduction

TO DO LIST:

  • Discuss WHAT a loop is. (Definition)
  • Types: while, for, do, etc...
  • Bottom tested, top tested
  • Terms:
    • Initializing
    • Condition (basic definition because we have a section below)
    • etc...

Types of Loops

Scope

Infinite Loops

Test Conditions

Additional Information

  • more on loops
    • multiple statements in the Initialization and Update
    • brief explanation of do-while loops (and why bottom testing loops are not ideal)
    • Running Totals and Sentinel Values
    • Review Questions and Exercises