#include #include using namespace std; int main() { int high, low; cout << "Please enter the low value and the high value for the histogram range" << endl; cin >> low >> high; int numBuckets = high-low+1; int count[numBuckets]; // make sure to initialize all entries for (int i=0; i> score) { if (score>=low && score<=high) count[score-low]++; else cout << "---- " << score << " ignored ----" << endl; } // generate the histogram for (int i=0; i