Tmoney2020 / assignments

assignments for suncoast developers guild
0 stars 0 forks source link

02 - 03 - First Bank of Suncoast - #7

Closed Tmoney2020 closed 4 years ago

Tmoney2020 commented 4 years ago

For this assignment, you will be creating your own personal bank account manager. You will be creating an app that will let you track both a savings account and a checking account total by performing transactions, such as withdrawals, deposits, and transfers. The application will also save your information in a file so you can track your account totals over time.

Objectives

Requirements

Create a console app that allows a user to manage a banking account.

As user should be able to make transactions against their accounts.

The transaction information should be stored in a file, using a CSV(or JSON) format to record the data.

Balances will be computed by determining the cumulative effect of all the transactions in order. For instance, if a user deposits 10 to their savings account and then withdraws 8 from their savings account, their balance is computed as 2.

Explorer Mode

Adventure Mode

Epic Mode

Additional Resources

Tmoney2020 commented 4 years ago

https://github.com/Tmoney2020/cs-First-Bank-Of-Suncoast

Tmoney2020 commented 4 years ago

Your homework 02 - 03 - First Bank of Suncoast - was marked: Meets Expectations

Great job!

“Great job!” — via Jason L Perry

gstark commented 4 years ago

This is great!

Clean up the inconsistent blank lines inbetween blocks of code.

See here and here and here, etc.

Code like this should be in a method to compute those values.

Remove commented out code.