Problem : Display the numbers 1 to 100, and say "done" when finished.

    Algorithm :
  1. start at the number 1
  2. is the number less than or equal to 100?
  3. if yes :
    • display the number
    • add one to the number
    • repeat steps 2 and 3
  4. otherwise display "Done"

Flowchart :
Untitled


Try to write a flow chart that allows you to count backwards from 1000 to 0 by 10s.