JAVA Project 2 Note! You will only need what you have learned in chapters 1 through 16 to solve this problem. After solv
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
JAVA Project 2 Note! You will only need what you have learned in chapters 1 through 16 to solve this problem. After solv
JAVA Project 2 Note! You will only need what you have learned inchapters 1 through 16 to solve this problem. After solving theproblem, you will give a presentation explaining what theapplication does and how it works. You will also explain the flowof program code. As in the last Project you built an applicationfrom scratch. This is to test that you can put into play what youhave learned since that first project. In other words, building asecond object-oriented program from scratch. You are going to builda Customer Data Entry app. Basically, you are going to set up anapplication which allow the user to enter the name and full addressof a series of customers. When complete the application gives theuser the opportunity to list the contents of all customers entered.In short it will flow something like this: The app needs to: •Allow a user to enter multiple customers (no limit). • When done,it allows the user to list all the customers. Eventually thisapplication will be modified (not now) to write the customers to adatabase. (The listing of the data will simulate the writing to afile.) For that purpose, we want to make sure each field is aspecific size as follows: • First name – 12 characters • MiddleInitial – 1 character • Last Name – 15 characters • Address Line 1– 25 characters • Address Line 2 – 25 characters • City – 15characters • State – 2 characters • Zip code – 5 characters (onlynumerical digits allowed). Create a Customer Class and let it dothe formatting of the customer fields. Use an array or a list tostore each customer while entering data. You can then use thatarray or list to display what was entered at the end of your dataentry sessions. Since the class is formatting the data, the displaywill have evenly spaced columns NEEDS TO BE IN CONSOLE APPLICATIONHELP! AND IN JAVA AS WELL!!! HELP!