Question
The function will return the remainder to the calling routine.
Use only ONE function!
2. Allow the user to toss a pair of six sided dice 100 times.
Count the total of each toss and store the count of each toss into an array (i.e. Number of occurrences of 2,4,5,6,7,8,9,10,11,12).
Display the total number of occurrences.
Solution Preview
This material may consist of step-by-step explanations on how to solve a problem or examples of proper writing, including the use of citations, references, bibliographies, and formatting. This material is made available for the sole purpose of studying and learning - misuse is strictly forbidden.
#include <cstdlib>#include <ctime>
#include <iostream>
using namespace std;
int main(int argc, char** argv) {
srand(time(NULL));...