This is an excellent idea to upgrade your skills in C++. All you require to do is build an application that will let its customers add and display books. Furthermore, it will help the customers to change their books by implementing modifications to them or adding or deleting pages. Create an application that will be user-friendly and effortless to access and use. It also lets users check and buy their favorite books anytime, anywhere with one click. But you have to be very mindful of your graphics as it is the major part of your bookshop management system application.
In this code, the Book class represents a book object with its title, author, and page count. The Bookshop class manages a collection of books and provides functionality to add, display, modify, and delete books. The main function acts as the entry point for the program, where the user can interact with the Bookshop Management System through a menu-driven console interface.
Please note that this code assumes a basic understanding of C++ concepts, such as classes, objects, vectors, and basic input/output operations.