Alright I have been working on this game for like a week or 2 now, but I am having some trouble towards the end.
Heres the code I have gotten so far:
#include <iostream>
#include <ctime>
#include <cstdlib>
using namespace std;
char play;
int guess;
bool done;
int noOfGuesses = 0;
int random;
int c;
double bank, winnings, total;
int check;
void printPayout()
{
cout << "1 guess, win 2.00" << endl;
cout << "2 guesses, win 1.75" << endl;
cout << "3 guesses, win 1.5" << endl;
cout << "4 guesses, win 1.25" << endl;
cout << "5 guesses, win 1.00" << endl;
cout << "6 guesses, .75" << endl;
cout << "7 guesses, win .5" << endl;
cout << "8 guesses, win .25" << endl << endl;
}
int checkGuess(int guess)
{
if (guess > random)
{
check = 1;
}
else if (guess < random)
{
check = -1;
}
else
{
check = 0;
}
return (check);
}
int genRandom()
{
int r;
srand(time(NULL));
r = rand() % 100 + 1;
return r;
}
int game()
{
cout << "Welcome to the guess-o-matic. It only costs a dollar to play. You could double your bet." << endl << endl;
cout << "Do you want to play (y / n)" << endl;
bank = 100.00;
cin >> play;
if (play=='y')
{
winnings = 2.00;
cout << "Great!, your payout will be as follows:" << endl << endl;
printPayout();
random = genRandom();
while((bank!=0)&&(play=='y'))
{
noOfGuesses=0;
random = genRandom();
winnings = 2.00;
while ((noOfGuesses!=8))
{
cout << "Now guess a number between 1 and 100" << endl;
cin >> guess;
noOfGuesses++;
c = checkGuess (guess);
if (c == 0)
{
bank = bank + winnings;
cout << "Correct, you win " << winnings << ", your bank is now "<< bank<< endl<<"Do You Wanna Play Again??(Y/N)";
cin>>play;
break;
}
else if (c == -1)
{
cout << "Sorry too low try higher" << endl;
winnings = winnings - .25;
}
else if (c == 1){
cout << "Sorry too high try lower" << endl;
winnings = winnings - .25;
}
}
}
}
cout<<"Thank You For Playing, you are left with a total of " <<bank<<" $\n Wishing you will be back to play once more.";
return 0;
}
int main()
{
game();
return 0;
}
I am missing this part I just realized and dont know how I can take it out and make it a function.
4. You must have a function called calcWinnings that takes as an argument, the number of guesses it took to determine the number. You must use a switch statement to determine the winnings. This function returns the number of winnings.
I also realized it doesn't take a dollar away when you lose.
another part I am also missing is
3. You must ask the user if they want to continue after each correct guess. This means they cannot quit in the middle of a game
Anyone know of a good way to add these. I have been trying and keep doing something wrong. If someone could help me out here I would be so thankful :)