akosiraff

Download PersonFileLinkedList

May 28th, 2015
319
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1.  
  2. Download: http://solutionzip.com/downloads/personfilelinkedlist/
  3. Write a Java program that can read a tab delimited file with the following structure.
  4. Attribute Name Data Type
  5. ID int
  6. FirstName String
  7. LastName String
  8. AcctountBalance double
  9. The program should build a linked list of person objects. It should read the txt file and populate the list with objects from the data.
  10. It should allow for data entry of one or more new records and check those against memory to confirm that they are not duplicates.
  11. It should then ask if you would like to delete a record such as record 3 or record 6.
  12. Then, allow the user to sort the list by Last Name, and display the result to the console. Then, allow the user to enter an id, and return the entire record to the console when the ID is found.
  13. It should print the total balance and the number of accounts to the console and write all records — including the new ones — to the text file.
  14. Download: http://solutionzip.com/downloads/personfilelinkedlist/
Add Comment
Please, Sign In to add comment