aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--ee1301/wk3/hw3_directory/strap012_HW3A.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/ee1301/wk3/hw3_directory/strap012_HW3A.cpp b/ee1301/wk3/hw3_directory/strap012_HW3A.cpp
index ce44428..7e1cfbb 100644
--- a/ee1301/wk3/hw3_directory/strap012_HW3A.cpp
+++ b/ee1301/wk3/hw3_directory/strap012_HW3A.cpp
@@ -15,7 +15,7 @@ One-armed Bandit Simulator
using namespace std;
int spin_the_wheel(int d, int w) {
int spinOG, spinNew;
- spinOG = rand() % d + 1
+ spinOG = rand() % d + 1;
for (int i=w; i>0; i--) {
spinNew = rand() % d + 1
if (spinNew==spingOG) {
@@ -27,13 +27,13 @@ int spin_the_wheel(int d, int w) {
return 1;
}
int main () {
- int win;
+ int m;
int d= 3;
int w= 9;
for (long n=1000000; n>0; n--) {
- win = spin_the_wheel(d,w);
- if (win==1) {
- win++;
+ m = spin_the_wheel(d,w);
+ if (m==1) {
+ m++;
}
}
cout << "w=" << w << ", d=" << d;