Question
Can someone answer this question i will give a lifersaver rating.
Write a program that outputs a histogram of grades for an assignment given to
a class of students. The program should input each student
Explanation / Answer
#include #include #include #include using namespace std; const int SIZE = 100; int main() { //Create pointer int *p; //Variable declaration int max = 0; int inputVal; p = new int[SIZE]; vector values; for(int i = 0; i inputVal; values.push_back(inputVal); //Compare input value with Max value if(inputVal > max) //assign input value to maximum value max = inputVal; if(inputVal >= 0) //Determines number of times grade is entered by the user p[inputVal]++; }while (inputVal != -1); //Display output for(int j = 0; j