Question: C++ program: output expected: Write a program that simulates the rolling of two dice. The program should use rand to roll the first and second
C++ program:

output expected:


Write a program that simulates the rolling of two dice. The program should use rand to roll the first and second dice. The sum of the two values should then be calculated. [Note: Since each die can show an integer value from 1 to 6, then the sum of the two values will vary from 2 to 12, with 7 being the most frequent sum and 2 and 12 the least frequent sums.]. There are 36 possible combinations of the two dice. Your program should roll the two dice 50,000 times. Use a 2D array to tally the numbers of times each possible sum appears. Print the results in a tabular format. The player wins if the total of the diagonal elements is greater than 8350, otherwise the player loses 9 10 Diagonal elements 6 78 9 10 11
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
