Using the Bank Class

Name the project chap5Bank

1)Instantiate (construct) 2 objects of the Bank class with the following initial balances:

Name           Checking           Savings
============================
Sue                 500                100
Tina                 200                300

2)Neatly print all initial data in a table form similar to the one above, Including the combined balance

3)Give all of Sue's money to Tina.

4)Close Sue's accounts.

5)Print all the information in table format again.

6)Instantiate (construct) a new bank customer named Joe with initial zero balances by calling the default (no parameter) constructor.

7)Give him half of all of Tina's money.

8)Print all the information for all three accounts in table format. 9) Use the DecimalFormat class and the Random class in some way during the run of your program

Add some other function and fun to this project such as asking for initial balances. For over and above a 90 you must do beyond the above assignment!!