Advertisement
akosiraff

Download BookWarehouse Answer

Nov 4th, 2018
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1.  
  2. Download: https://solutionzip.com/downloads/bookwarehouse/
  3. You are to write a program that serves as a partial inventory processing system for The Book Warehouse, a non-profit organization that accepts donations of used books.
  4. Every weekend, people bring books to donate. Every book is logged by title, format (paperback, hardcover, audiobook), and genre (nonfiction,literature,popular fiction,. The organization is looking for a system that will allow the volunteer staff to enter details about each book. They will enter the title, the category, the genre, and the number of copies, as follows:
  5. Please Enter the Number of Copies: ###
  6. Please Enter the Title of the Book: ###
  7. Please Enter the Format of the Book: ###
  8. Please Enter the Genre of the Book: ###
  9. This will continue until all donations are recorded.
  10. If the user enters “0” as the number of copies, the program will proceed to print the following:
  11. Donation Data Entry Complete.
  12. Total Books Received at Warehouse: ###
  13. Number of Duplicate Titles: ###
  14. Book with the Largest Number of Copies: [title of the book]
  15. Number of Books in the Nonfiction genre: ###
  16. CONSTRAINTS:
  17. You must use at least one loop, and at least one list in this assignment.
  18. The number of copies of each book cannot be less than zero, and the program processing should not allow that.
  19. The title and genre for each book may be entered in any case, but should be stored in lowercase.
  20. Valid genres are: Science fiction, Satire, Drama, Action and Adventure, Romance, Mystery, Horror, Self-help, Health, Travel, Children’s, Religion, Spirituality & New Age, Science, History, Math, Comics, Art, Biography, Fantasy.
  21.  
  22. Download: https://solutionzip.com/downloads/bookwarehouse/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement