| UMBC | CMSC104 |
The program will print the student scores and calculate and print the statistics for each quiz. The output is in each quiz. The output is in the same order as the input; no sorting is needed. The input will be read from a text file. The output from the program should be similar to the following:
Student Quiz 1 Quiz 2 Quiz 3 Quiz 4 Quiz 5
1234 78 83 87 91 86
2134 67 77 84 82 79
3124 77 89 93 87 71
High Score 78 89 93 91 86
Low Score 67 77 84 82 71
Average 73.4 83.0 88.2 86.6 78.6
Student Quiz 1 Quiz 2 Quiz 3 Quiz 4 Quiz 5
1234 52 7 100 78 34
2134 90 36 90 77 30
3124 100 45 20 90 70
4532 11 17 81 32 77
5678 20 12 45 78 34
6134 34 80 55 78 45
7874 60 100 56 78 78
8026 70 10 66 78 56
9893 34 9 77 78 20
1947 45 40 88 78 55
2877 55 50 99 78 80
0189 22 70 100 78 78
4602 89 50 91 78 60
5405 11 11 0 78 10
6999 0 98 89 78 20
Make sure that all student numbers are printed out as four characters!
/*********************************************************** * Filename: 6789prjE.c * * Name: Ima Student * * SSAN: 6789 * * Date: 3 May 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 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 | CMSC104 | Lectures |