Checking Account Project

This project used lot of the same concepts as from the Multiple Savings Accounts Projects. It takes an account and asks the user for a starting balance and fee for the account object. But instead of growing over a number of cycles, the user can deposit or withdraw from the account. It then takes the fee out of whichever the user chooses, deposits and withdrawals, and prints out the new total on the account. This was a basic project to get into object oriented programming a little bit more so there isn't anything stopping the account from going below 0, it will run into the negative.

Program Run

Main Class Code

Checking Account Code