Processing Balloon Data in C++
January 23rd, 2023
Write a program that prints a histogram of N random integers from 0 through 10, where N is
provided by the user.
Enter an integer > 0: 13
Enter an integer > 0: 15
Random #s…
4 7 2 1 6 9 0 6 4 10
9 4 8 4 1
Histogram…
*
*
* * * *
* * * * * * * * *
0 1 2 3 4 5 6 7 8 9 10
submission requirements: submit a single C++ source file called, histogram.cpp.
I can use arrays, looping, switching, and if statements.