From cb7d0f7867d18a6e7342317fe678d9671498eb1b Mon Sep 17 00:00:00 2001 From: nyosic Date: Sun, 9 Feb 2025 23:02:18 +0100 Subject: [PATCH] Update menu --- main.cpp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/main.cpp b/main.cpp index c811cc5..a850f35 100644 --- a/main.cpp +++ b/main.cpp @@ -346,6 +346,7 @@ void higherOrLower() { void deposit() { int deposit_amount; + cout << "Current money in bank: " << bank_balance; cout << "Enter the amount of money you want to deposit: "; cin >> deposit_amount; if (bank_balance >= deposit_amount) { @@ -366,7 +367,8 @@ void deposit() { void withdraw() { int withdraw_amount; - cout << "Enter the amount of money you want to deposit: "; + cout << "Current NyscoCoin balance: " << balance; + cout << "Enter the amount of money you want to withdraw: "; cin >> withdraw_amount; if (balance >= withdraw_amount) { balance -= withdraw_amount; @@ -429,11 +431,11 @@ int main() { cout << "(C) - Coinflip" << endl; cout << "(S) - Slots" << endl; cout << "(B) - Blackjack" << endl; - cout << "(R) - Roulette (coming soon!)" << endl; + cout << "(R) - Roulette (Coming soon!)" << endl; cout << "(D) - Dice Roll" << endl; - cout << "(H) - Higher or Lower (coming soon!)" << endl; + cout << "(H) - Higher or Lower" << endl; cout << "--------------------" << endl; - cout << "(J) - Go To Work (best option btw! don't gamble it's bad)" << endl; + cout << "(J) - Go To Work" << endl; cout << "--------------------" << endl; cout << "(M) - Deposit Money" << endl; cout << "(W) - Withdraw NyscoCoins" << endl;