Question: c++ coding In this project you are to create a database of books that are stored using a vector. Keep track of the author, title,
In this project you are to create a database of books that are stored using a vector. Keep track of the author, title, and publication date of each book. allows the user to select from the following: (1) Add a book's author, title, and date; (2) Print an alphabetical list of the books sorted by author; and (3) Quit. Your program should have a main menu that You must use a class to hold the data for each book. This class must hold three string fields: one to hold the author's name, one for the publication date, and another to hold the book's title. Store the entire database of books in a vector in which each vector element is a book class object. To sort the data, use the generic sort function from the
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
