CSC 311

Winter 2002

Assignments

Assignment 1 (due Monday, January 14th)

Assignment 2 (due Monday, January 21st)

Assignment 3 (due Wednesday, January 30th)

Assignment 4 (due Wednesday, February 13th)

Assignment 5 (due Monday, March 11th)

Every program you write must abide by the following rules.  If it doesn't, you will lose points.  Please check these rules before each assignment as I will be adding to the list as the quarter goes on.

  1. The first six lines of every program you submit must have comment lines indicating the course, program name, student name, and DePaul e-mail address.  For example, if your name is Ada Augusta, your DePaul e-mail is aaugusta@students.depaul.edu, and you're submitting the goodbye program, you would have:
        // 
        // CSC 311
        // goodbye.cpp
        // Ada Augusta
        // aaugusta@students.depaul.edu
        //
        

    Failure to do this correctly may cost up to 10 points.

    The next few lines after that should be comments explaining briefly what the program is doing.  Not doing this may cost up to 10 points.

  2. Use meaningful variable names.  Except for loop indices, do not use single character names!  For example, instead of using the name  n for a number use the name number.   

Late policy

A programming assignment loses 10% for each day that it's late; that is, if an assignment is originally worth 20 points, it will be graded out of 18 points if it's late one day, out of 16 points if it's late two days, and so forth.

Submitting a program

This will be explained during the first class.