A simple banking program in terminal built with C++.
The savings account is a very simple add, subtract, and display, so I did not see the need to show or explain it.
Instead, I will be skipping to the checking account.
The "Write A Check" function asks for the amount and the check number.
The amount typed will subtract from the account total.
The check number will save into an array that can be displayed in the "Display Checking" function.
This is what is shown when the "Display Checking" function is used.
It displays the last 10 check numbers that were written.
This function asks for the amount and the name for the charge.
The amount will subtract from the account total.
The name will be added into an array with the last 10 charges.
This function displays the last 10 charges on the card.
Notice the credit card account is now in the negatives.
It can be paid for using the "Credit Card Payment" function.
This is how the credit card functions were built.
The other accounts were built in a similar way.
The executable program can be created by using the Makefile.