You are on page 1of 1

id,name,balance

4534,"John Doe",$1000.00
5004,"Jane Burke",$20.00
8765,"Joe Hill",$0.00
9032,"Patty Underwood",$475.00





Write a program that simulates an ATM machine using the account class created in a previous
homework assignment. The ATM machine with contain multiples accounts store by an unique
identifier, which will be load at startup from a data file(data is provided). The account data will
be stored in the ArrayList data structure.
Screen 1:
Enter you account number :
Screen 2:
Main Menu
1. balance
2. withdraw
3. deposit
4. exit
Enter a Choice:
Example:
user enters 1 and hit enter key
Your balance is $100.00
Your program will have at minimum 3 Java classes.

You might also like