akosiraff

Download: Book Application Java

Jan 31st, 2013
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1.  
  2. Download: http://solutionzip.com/downloads/book-application-java/
  3. Create a Book class that stores book information. Your Book class will store the following:
  4. • book title
  5. • author’s first name
  6. • author’s last name
  7. • book ISBN-10 number
  8. • publisher
  9. • price
  10. Create a test application that creates several objects of type Book class and adds each book to an ArrayList. Your test application should then do the following:
  11. • Iterate through all books in the ArrayList and print the information out in readable form
  12. • Print the total number of books stored
  13. • Prompt you for an index and print the book information stored in the index
  14. Hint: You may want to consider overriding the toString() method to provide a readable string representation of Book object.
  15. Code must be readable with consistent style and should contain embedded comments and method headers.
  16. Download: http://solutionzip.com/downloads/book-application-java/
Add Comment
Please, Sign In to add comment