aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRossTheRoss <msattr@gmail.com>2019-02-19 22:16:51 -0600
committerRossTheRoss <msattr@gmail.com>2019-02-19 22:16:51 -0600
commit4f4c4d707b103a7133c7ffdf6f414d1ad7f3b71e (patch)
tree1a711a9d24c96459c11dbf2fac8c721ea0d85026
parentA hackjob to make hackjobs feel bad (diff)
downloadhomework-4f4c4d707b103a7133c7ffdf6f414d1ad7f3b71e.tar
homework-4f4c4d707b103a7133c7ffdf6f414d1ad7f3b71e.tar.gz
homework-4f4c4d707b103a7133c7ffdf6f414d1ad7f3b71e.tar.bz2
homework-4f4c4d707b103a7133c7ffdf6f414d1ad7f3b71e.tar.lz
homework-4f4c4d707b103a7133c7ffdf6f414d1ad7f3b71e.tar.xz
homework-4f4c4d707b103a7133c7ffdf6f414d1ad7f3b71e.tar.zst
homework-4f4c4d707b103a7133c7ffdf6f414d1ad7f3b71e.zip
Finish C
-rw-r--r--ee1301/wk2/hw2_directory/strap012_HW2C.cpp38
1 files changed, 35 insertions, 3 deletions
diff --git a/ee1301/wk2/hw2_directory/strap012_HW2C.cpp b/ee1301/wk2/hw2_directory/strap012_HW2C.cpp
index f300a04..d03ea1e 100644
--- a/ee1301/wk2/hw2_directory/strap012_HW2C.cpp
+++ b/ee1301/wk2/hw2_directory/strap012_HW2C.cpp
@@ -4,12 +4,44 @@ Name: Matthew Strapp
Student ID number: 5449340
Course number: EE1301
Term: Spring 2019
-Lab/assignment number: Homework 2B
-Short Program Description: Time Calculator
+Lab/assignment number: Homework 2C
+Short Program Description: One-armed Bandit
*/
#include <iostream>
+#include <time.h>
+
using namespace std;
int main () {
-
+ srand (time(NULL));
+ bool win=false;
+ int d=0, spin1, spin2, spin3, spin4;
+ do {
+ do {
+ win=false; //Reset win from before, otherwise win will always be true after it is true once
+ cout << "How many values do you want on each wheel? ";
+ cin >> d;
+ } while (d==0); //Without this failsafe, the program does undefined things at d=0
+ spin1= rand () % d + 1;
+ spin2= rand () % d + 1;
+ spin3= rand () % d + 1;
+ spin4= rand () % d + 1;
+ cout << "The wheels spin to give: " << spin1 << " " << spin2 << " " << spin3 << " " << spin4 << " ";
+ if (spin1==spin2) { // These nested statements only let the bool "win" be true if all of the spinners match
+ if (spin2==spin3) {
+ if (spin3==spin4) {
+ win=true;
+ }
+ }
+ }
+ if (win) {
+ cout << "Eureka!";
+ }
+ else {
+ cout << "You lose.";
+ }
+ cout << endl;
+ } while (d!=-1);
+ cout << "OK, goodbye." << endl;
+ return 0;
} \ No newline at end of file