UMBC CMSC104 CSEE

Extra Credit Project

Due: 15 Dec

This project is worth 100 points and due at midnight Dec 11:

Requirements

Create a file named 6789projEC.c that will:

Grading

This project will be grade using the following scale:

Documentation 25 points
Correct Results25 points
Correct Sytle25 points
Other25 points

You will lose 5 points if you do not name the file correctly.
You will lose 5 points if you email the project instead of submitting it via Blackboard.
You will lose 5 points if the prompt is not on the next line.
You will lose 5 points if you have less than four functions (not counting main).

You will lose 25 points if you do not use two parallel arrays, one single-dimensioned array for the student number and one two-dimensioned array for the scores..

Program Header Comment Block

Use the following comment block at the beginning of your source code:
/***********************************************************
 * Filename:       6789projEC.c                           *
 * Name:           Ima Student                             *
 * SSAN:           6789                                    * 
 * Date:           3 October 2000                          *
 * Course:         CMSC-104                                * 
 * Description:    (Your psuedocode for main() goes here)  *
 *     Analysis:                                           *
 *                 Input:                                  *
 *                 Output:                                 *
 *                 Formulas:                               *
 *                 Constraints:                            *
 *                 Assumptions:                            *
 *     Design:     (Psuedocode is here)                    *
 * Notes:          (As needed, such has how to compile)    *
 ***********************************************************/
  

Function Header Comment Block (One for each function)

/*********************************************************** 
 * Function name:    function_name                         *
 * Description:      (Your function psuedocode goes here)  *
 * Input Parameters: Name and data type of each parameter. *
 * Return Value:     Data type and description of what     *
 *                   the return value is.                  * 
 ***********************************************************/
  


UMBC CMSC104 CSEE