CSCI 431 Homework 8

time due submission file
9:00 AM Wednesday 13 November, 2006 csci/431/HW8/gradem.cpp

The assignment

Homework 6 was functional programming. This one is most non-functional.

In this assignment you use C++ I/O statements to read, from cin, student grade information that looks like the following:

Working Hard  95 90 95 80 91 99 95 90 99 87 89 95
Average Joe   78 78 78 78 78 78 78  78 78 78 78 78
Fading Fast   90 80 70 60 50 40 30 20 80 40 40 10
Outa Range   105 80 70 60 50 40 30 20 80 40 40 10
Miss Scores   90 80  70 60 50 40  30 20 80 40 10
Notta Number  80 heck 70 60 50 40 30 20 80 40 40 10 10

And then to produce, onto cout, student grade information that looks like:

Working Hard  A
Average Joe   C
Fading Fast   F
Outa Range    ?
Miss Scores   ?
Notta Number  ?

Use the weighting decribed in Homework 6.