/* 27 Feb 2019 Matthew Strapp 5449340 EE1301 Spring 2019 Homework 3A One-armed Bandit Simulator */ #include #include #include #include using namespace std; int spin_the_wheel(int d, int w) { int spinOG=0, spinNew=0, win=0; spinOG = ( (rand() % d) + 1); for (int i=0; i0; n--) { int test = spin_the_wheel(d, w); m+=test; } double win=m; cout << "w=" << w << ", d=" << d << ": Simulated probability = m/n = " << (win / 100000.0) * 100.0 << "%. " << "Theoretical probability = " << (d / (pow(d, w))) * 100 << "%." << endl; d+=2; } } }