> Okay I didn't get those errors when I ran mine
You need to enable warnings.
And get a better compiler, main must return int.
> So now no matter what I withdraw my account balance is always 1 dollar??
There is none assignment in the {Bank,CheckingAccount}::withdrawMoney() functions
> When it asks me if I would like to do another transaction
> if I hit yes it asks me how much I would like to deposit and i'm in withdraw?
line 218
else if (Choice='D' || Choice == 'd')
you've got assignment instead of comparison.
However the logic of the loop is weird, You ask if you I want to perform another operation, and write my answer on `Choice' ¿how do you figure out which operation I want to perform?
179 180 181
|
BankAccount accountBank;
CheckingAccount accountChecking;
SavingsAccount accountSavings;
|
¿you do realize that those are three different objects that have no relationship between them?
> then if I type in d for deposit transaction at this point it asks me to set up an account number
> for my savings... I have to have things out of order or not worded right
Try to follow your code.
By the way, you do have a lot of whitespace (and your indentation is off)