A bank wants you to create a GUI app that will allow bank employees to view the clients’ information. The app
should prompt the user to enter first name, last name, account number and account balance. It should provide
options to allow the bank manager to search through each client’s information backward and forward. Create a
Customer class to represent the client with first name, last name, account number and account balance. The
application should use an array of Customer objects to store customer information. DO NOT use any collection
classes such as ArrayList, LinkedList, HashSet etc. You can only use the following statement that assumes the
maximum number of customers is 100
Customer [] customerList = new Customer[100];
Comments
Leave a comment