Question
Write a program that simulates a Library Circulation System. The system allows: Adding and saving a new book record. Searching for a book by title.
Write a program that simulates a Library Circulation System.
The system allows:
Adding and saving a new book record.
Searching for a book by title.
Searching for a book by author.
Searching for a book by ISBN number
Check out a book
Check in a book
List books by status.
Display library collection sorted by title.
Display library collection sorted by author.
A library book can be defined as a structure
struct Book
{
string author;
string title;
string isbn;
int copies;
};
Book status can be defined as an enum
enum Status { CHECKED_OUT, ON_SHELF };
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started