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;