(Latest Revision: 04/02/2000)

 Week 10 Notes for CS 1500 -- Spring 2000
(this is draft material)

* Take roll

* Grades for Lab #6 are in the web space.  You can check with
  me to find out "what you did wrong" if you did not get a score
  of 100.

* Take a look at the schedule for the week.

* Simple-Loop Solo #4 program due on Friday, April 21.

* Quiz #2 is scheduled for Wednesday, April 19.  The quiz will
  cover Shiflet chapters 4-5; Andersen 10-12, 17-21.  There are
  some review hints in the "studyGuide" document in the web
  space.  (Have a look.)

Topics covered in readings this week.

* The for-loop
  +  counting up
             /* Exactly what does this loop write? */
       for (i=1; i<10; i++) cout << i*i << " " ;
         
  +  counting down
             /* Exactly what does this loop write? */
       for (i=10; i>0; i--) cout << i*i << " " ;

* Declaration of index
             /* Exactly what does this loop write? */
       for (int j=0; j<20; j++) cout << 2*j+1 << " " ;

* Tables (c.f. ex0703.cpp) in this directory

    (Look at the program, try to figure out what it writes, then
     check the output given.)

* 2D-Tables (c.f. payment.cpp in this directory)
    (Look at the program, try to figure out what it writes, then
     check the output given.  Note: the savings on long-term
     loans are pretty interesting.)

=========================
MONDAY
=========================

=========================
WEDNESDAY
=========================

=========================
FRIDAY
=========================