Difference between revisions of "Looping Exercises"

From WLCS
Line 8: Line 8:
  
  
* Powers of 3
+
* Powers of 2
** 1, 3, 9, 27, 81, ...
+
** 1, 2, 4, 8, 16, 32, 64, 128...
  
  

Revision as of 12:23, 19 November 2010

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, ...