The program

This program is a simple exercise in using functions, basic control structures, and I/O in C.

Your program will "drop balls" each of which will bounce randomly and land in a slot. There will be 21 slots (numbered from -10 to 10). Each ball will be dropped over the middle slot (number 0) and "bounce" 10 times. On each bounce the ball will move (randomly) either left or right (i.e. to the slot with one number lower or one higher). Notice that since there will be an even number of bounces the ball will always land in an even-numbered slot.

The program will ask the user for the number of balls to be dropped and accept the user's answer. If the user enters a value less than 1 and error message will be displayed and the program will continue asking until a value at least 1 is entered. The program will then drop the requested number of balls and count how many land in each slot. A histogram will be displayed showing how many balls landed in each slot (you need only draw histogram lines for even-numbered slots). Use lower case 'o' for points in the histogram -- each 'o' will represent one ball. The histogram should (roughly) present a bell curve representing a normal distribution. Running the program may give a display as follows:

A first run of the program:

How many balls to drop? -4
Must drop at least one ball
How many balls to drop? 0
Must drop at least one ball
How many balls to drop? 100
-10:
-8:
-6: o
-4: ooooooooo
-2: oooooooooooooooooooooo
0: ooooooooooooooooooooooooo
2: oooooooooooooooooooooo
4: ooooooooooooo
6: ooooooo
8:
10: o

A second run of the program:

How many balls to drop? 150
-10: o
-8:
-6: ooooo
-4: ooooooooooooooooo
-2: oooooooooooooooooooooooooooooooooo
0: oooooooooooooooooooooooooooooooo
2: oooooooooooooooooooooooooooo
4: oooooooooooooooooooooooo
6: oooooooo
8: o
10:

Internals

Your program must be well-commented (of course), show good programming style, use several functions, and have a short main(). Each function other than main() should have a function prototype.

You will use an int array, say int catch[21], to count the number of balls which fall into the various slots: catch[10] will hold the number of balls which fall into the middle slot, catch[11] the number in the slot to its right, catch[9] the slot one left of the middle, etc. To "drop" a ball you will initialize a counter to 10 (for the middle slot) and let it "bounce" 10 times. A bounce will randomly add or subtract 1 from this counter. After the 10 bounces the value in the counter will be the slot where the ball lands -- increment the corresponding position in catch[].

Random numbers in C

The following functions from the standard library will be useful:

  • int rand(). Returns the next integer in a pseudo-random sequence. The values are in the range 0 ... RAND_MAX (a constant defined in stdlib.h).
  • void srand(unsigned seed). The seed value determines where the pseudo-random sequence begins. If the same parameter is passed to srand() on two occasions the same sequence will be generated each time. It is useful to seed the random number generator with a method which provides different values at different times. The usual way to do this is by reading the system clock.
  • unsigned time(unsigned *i). Returns the time in the form of the number of elapsed seconds from some fixed point in the past. The value is also stored in the variable i. The value will not be stored if 0 (for a null pointer) is passed as a parameter.

Thus, the random number generator can be (somewhat randomly) seeded by

srand(time(0));

and then a random non-negative integer will be returned by each call to rand().

Academic Honesty!
It is not our intention to break the school's academic policy. Posted solutions are meant to be used as a reference and should not be submitted as is. We are not held liable for any misuse of the solutions. Please see the frequently asked questions page for further questions and inquiries.
Kindly complete the form. Please provide a valid email address and we will get back to you within 24 hours. Payment is through PayPal, Buy me a Coffee or Cryptocurrency. We are a nonprofit organization however we need funds to keep this organization operating and to be able to complete our research and development projects.