Starting from:
$21.99

$15.99

Output histogram Solution

Write a program that outputs a histogram of student grades for an assignment. First, the program will input the number of grades and create a dynamic array to store the grades. Then, the program should input each student's grade as an integer and store the grade in the dynamic array.

The program should then scan through the array and compute the histogram. In computing the histogram, the minimum value of a grade is 0 but your program should determine the maximum value entered by the user. Use a dynamic array to store the histogram. Output the histogram to the console.

For example, if the input is:

Enter number of grades:

6

Enter grades (each on a new line):

20

30

4

20

30

30

Then the output histogram should be:

  4 *

 20 **

 30 ***

More products