Computer Science

From WLCS
Revision as of 09:13, 8 December 2010 by Admin (talk | contribs)

Wednesday (12/8/12/)

Warmup:

  • Prompt the user for a number N
  • Print out the first N terms of the following sequence:
    • 1, 4, 9, 16, 25, 36, ...

Agenda:

Tuesday (12/7/10)

Warmup:

  1. Write a loop that runs 30 times (using x as a counter variable)
    1. Inside the loop, print x*" ","*"
    2. Don't forget to increment your counter variable
  2. Write another loop that runs from 30 down to 0
    1. Inside the loop, print x*" ","*"
    2. Don't forget to decrement your counter variable

Agenda:

Monday (12/6/10)

Warmup:

  1. Initialize a counter variable i to 1
  2. Create another variable old_i that starts at 1 also
  3. Create a loop that runs up to 1000
    1. print out i and old_i on the same line (use a comma)
    2. save i into old_i
    3. increment i
  • What happens when you execute the above code?

Agenda:

Friday (12/3/10)

Warmup:

  1. Initialize a counter variable i to 1
  2. Create another variable old_i that starts at 1 also
  3. Create a loop that runs up to 1000
    1. print out i and old_i
    2. save i into old_i
    3. increment i
  • What happens when you execute the above code?

Agenda:

Thursday (12/2/10)

Warmup:

  1. Prompt the user for a number N
  2. Initialize a counter variable named i to 0
  3. Using a loop, print out all the numbers up to N

Agenda:

Wednesday (12/1/10)

Warmup:

  • Create a loop counter variable i that starts at 0
  • Write a loop that counts down from 0 through -10 (What would the condition be?)
    • Print i inside the loop
    • Don't forget to decrement i!

Agenda:

Archives