Implement your design for a general wheel counter, as described in the previous project. Write a program to compute the probability that the sum of the values shown on four dice will be greater than 12. (Divide the number of configurations of the dice where the sum is greater than 12 by the total number of possible configurations of the dice.) Use an instance of the wheel counter to get all the possible configurations of four six-sided dice. For example, if the wheels start at [1, 1, 1, 1], the wheel counter will advance as follows: [1, 1, 1, 2], [1, 1, 1, 3], [1, 1, 1, 4], [1, 1, 1, 5], [1, 1, 1, 6], [1, 1, 2, 1], and so on.
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.