From 4f4c4d707b103a7133c7ffdf6f414d1ad7f3b71e Mon Sep 17 00:00:00 2001 From: RossTheRoss Date: Tue, 19 Feb 2019 22:16:51 -0600 Subject: Finish C --- ee1301/wk2/hw2_directory/strap012_HW2C.cpp | 38 +++++++++++++++++++++++++++--- 1 file changed, 35 insertions(+), 3 deletions(-) (limited to 'ee1301/wk2') 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 +#include + 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 -- cgit v1.2.3