Looping Exercises

From WLCS
Revision as of 12:23, 19 November 2010 by Admin (talk | contribs)

Objective:

  • To become well-learned in the way of the while loop

Directions:

  • For each of the following sequences, first prompt the user for a number N and print out the first N terms of the sequence
  • Creating functions for the following exercises is optional
  • Use while loops to generate the following sequences


  • Powers of 2
    • 1, 2, 4, 8, 16, 32, 64, 128...


  • Fibonacci Sequence (HINT: use multiple variables)
    • 0, 1, 1, 2, 3, 5, 8, 13, 21, ...


  • Factorial Sequence (HINT: use multiple variables)
    • 1, 1, 2, 6, 24, 120, ...