Pretty cool betting game

So I spent some time making a cool betting game. I wanted to make sure that I utilized the functions to help create a modular program… I think I am describing this correct.

Link to the code on github:

main.cpp
#include
#include
#include
#include “game.hpp”

using namespace std;

int guess;
int number;
int cycles;
int balance = 100;

string player;

int main() {

greet();

cout << "Please enter your name: " << endl;
cin >> player ;

while (balance > 0) {

	int bet = getbet(balance);
	cout << player << ": ";
	int game = gamechoice();

	int win_loss = letsplay(game);
	int upbalance = update_balance(win_loss, bet, balance);

	balance = upbalance;
	cout << endl;
	cout << player << " your current balance is: " << balance << endl << endl;
	cycles++;
}
cout << endl << "You made " << cycles << " bets!" << endl << endl;
gameover();

}

game.hpp
using namespace std;

void greet();
int getbet(int balance);
int gamechoice();
int letsplay(int game);
int update_balance(int win_loss, int bet, int balance);
void gameover();

game.cpp
#include
#include
#include “game.hpp”

using namespace std;

void greet() {

cout << "Welcome to the guessing game!" << endl;
cout << "Choosing the different games will provide you with different winning odds" << endl;
cout << "Picking number out of 10 will provide you with 9 to 1 odds" << endl;
cout << "Picking number out of 50 will provide you with 49 to 1 odds" << endl;
cout << "Picking number out of 100 will provide you with 99 to 1 odds" << endl;

}

int getbet(int balance) {

bool goodbet;
cout << "Your current balance is: " << balance << endl;
int bet = 0;
cout << "Enter the amount you would like to bet: " << endl;
cin >> bet;
cout << "You have wagered " << bet << endl;
while (goodbet = true)
if (bet <= balance) {
	return bet;
	goodbet == true;
}
else {
	cout << "Please bet an amount less than balance." << endl;
	cout << "Your current balance is: " << balance << endl;
	cout << "Enter your correct wager: ";
	cin >> bet;
}

}

int gamechoice() {

bool goodchoice;
cout << "Please pick 1 for out of 10, 2 for out of 50 and 3 for out of 100" << endl;
int choice;
cin >> choice;
while (goodchoice = true)
	if (choice == 1) {
		cout << "You have selected to play game " << choice << endl;
		return choice;
		goodchoice == true;
	}
	else if (choice == 2){
		cout << "You have selected to play game " << choice << endl;
		return choice;
		goodchoice == true;
	}
	else if (choice == 3) {
		cout << "You have selected to play game " << choice << endl;
		return choice;
		goodchoice == true;
	}
	else {
		cout << "You have not selected a proper choice" << endl;
		cout << "Plese select 1, 2, or 3: " << endl;
		cout << "Enter your choice: ";
		cin >> choice;
	}

}

int letsplay(int game) {

int guess;

if (game == 1) {
	int com_num = rand() % 10;
	cout << com_num;
	cout << "Please choose a number between 0 and 10: " << endl;
	cin >> guess;
	
	if (com_num == guess) {
		cout << "You have won!" << endl;
		return 1;
	}else {
		cout << "You have lost!" << endl;
		return 2;
	}
}else if (game == 2) {
	int com_num = rand() % 50;
	cout << com_num;
	cout << "Please choose a number between 0 and 50: " << endl;
	cin >> guess;
	
	if (com_num == guess) {
		cout << "You have won!" << endl;
		return 3;
	}
	else {
		cout << "You have lost!" << endl;
		return 4;
	}
}else if (game == 3) {
	int com_num = rand() % 100;
	cout << com_num;
	cout << "Please choose a number between 0 and 100: " << endl;
	cin >> guess;
	
	if (com_num == guess) {
		cout << "You have won!" << endl;
		return 5;
	}
	else {
		cout << "You have lost!" << endl;
		return 6;
	}
}

}

int update_balance(int win_loss, int bet, int balance) {
int bal;
if (win_loss == 1) {
bet = ((bet * 9) / 1) + bet;
bal = balance + bet;
return bal;
}
else if (win_loss == 3) {
bet = ((bet * 49) / 1) + bet;
bal = balance + bet;
return bal;
}
else if (win_loss == 5) {
bet = ((bet * 99) / 1) + bet;
bal = balance + bet;
return bal;
}
else if (win_loss == 2) {
bal = balance - bet;
return bal;
}
else if (win_loss == 4) {
bal = balance - bet;
return bal;
}
else if (win_loss == 6) {
bal = balance - bet;
return bal;
}
}

void gameover() {

cout << "Thanks for playing." << endl;
cout << "Even though you lost you can always play again" << endl;
cout << "Better luck next time!" << endl;

}

I know that I have not commented it out at all but I plan to back and do this. Was just excited about having it done and I thought I would share it.

1 Like