AP Computer Science :: Projects :: Roll of the Dice
Problem
Download this project skeleton to start this project. From your program's main method, get input from the user to simulate a certain number of die rolls. Check this website for three methods to get input from the user. System.in is probably the easiest to implement. Once the simulation is over, the output should display graphs indicating the number of times each die roll value occurred. An array should be used to keep track of how many times each possible sum is rolled. The graph should look something like the following:
2 ** 3 **** 4 **** 5 ****** 6 ******* 7 ********** 8 ******* 9 ****** 10 *** 11 ** 12 *
Make sure the bar graphs don't get too long so they scroll off the console window.