Typical Programming Work Flow

The Programming Process

  1. requirements
  2. implementation
  3. run the program
  4. check the output
  5. go back to step #2
    • or possibly even #1!
    • do this until… ?

INFO - reconstruct diagram

Requirements gathering

QUESTION: flowchart for printing even numbers QUESTION: pseudocode for printing even numbers

Coding / Implementation

Executing Your Program

Checking Output

* QUESTION - what kind of error is forgetting a parentheses? * QUESTION - what kind of error is adding a number to a string?

Iteration

Let's Review