| UMBC CMSC104 | CSEE |
7 DecThe 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.
After all the data is input, the output from the program should be similar to the following:
Student Quiz 1 Quiz 2 Quiz 3 Quiz 4 Quiz 5
jdoe2 78 83 87 91 86
bsmith7 67 77 84 82 79
kpatel47 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
jdoe2 52 7 100 78 34
tl2 90 36 90 77 30
abc1 100 45 20 90 70
gary9 11 17 81 32 77
dude3 20 12 45 78 34
mon5 34 80 55 78 45
fri13 60 100 56 78 78
ftower1 70 10 66 78 56
gbush44 34 9 77 78 20
burt100 45 40 88 78 55
elliot3 55 50 99 78 80
squire 22 70 100 78 78
freeman1 89 50 91 78 60
charles1 11 11 0 78 10
lazy1 0 98 89 78 20
/*********************************************************** * Filename: jdoe2pEC.c * * Name: jdoe2 * * SSAN: jdoe2@umbc.edu * * Date: 3 October 2004 * * 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 |