Write C++ program that implements the histogram of the given array. 1: X is 1 by 10000 integer array that contains the s
Posted: Sat May 14, 2022 6:59 pm
Write C++ program that implements the histogram of the given
array.
1: X is 1 by 10000 integer array that contains the scores
between 0 and 100.
2: H is the histogram array of size 1 by 101 which contains the
times a specific number is repeated in X . (example H[0] = 123
means there are 123 entries in X that are zero.).
3: Write a program that Bar plots the array H.
Using Headers and Classes
array.
1: X is 1 by 10000 integer array that contains the scores
between 0 and 100.
2: H is the histogram array of size 1 by 101 which contains the
times a specific number is repeated in X . (example H[0] = 123
means there are 123 entries in X that are zero.).
3: Write a program that Bar plots the array H.
Using Headers and Classes