Hypothetical Problem
Input: zero or more grades from 0 to 100 preceded by the number of grades5 90 85 40 89 12
Task: read grades and compile information about them
- print them in reverse order
- print them in increasing order
- print a histogram
So, need to read in all the values before processing, need as many variables as grades. . .
How to do this using the Java we know so far?