Question: Part 1 Instructions A local library needs a program that stores information about their books. The information that they need stored is as followed: The




Part 1 Instructions A local library needs a program that stores information about their books. The information that they need stored is as followed: The title of the book. The book's author. The ISBN number (note: for this program, we will just use a random 5-digit number). The status of the book (i.e., whether it is checked out). The name of the person that has it currently checked the book out. The program should, in addition, support the following commands: 1. Search the library of books by ISN. 2. Checkout a book 3. Return a book. 4. Quit Program To implement this program, we are going to create a class called Book, which will Nlow us to create objects that store the required information for a given book. Below is a UML diagram that describes what members the Book class should have: Book title:string author:string ISBN:int -status:bool -checkedOutBy:string
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
