C++ Programming: Please make sure program compiles and runs and I can give 5 sta
ID: 3815341 • Letter: C
Question
C++ Programming: Please make sure program compiles and runs and I can give 5 stars :-)
Write a C++ program to manage a library system. The main user is the librarian. Build Specifications (35 points) 1. The system should load a catalog of books, journals, and magazines at the start of the program 2. A user can search the catalog: The user of the system can search the library's catalog by using the name of the item. Also, a user can list books by category (Book, Journal, or magazine). If you are looking specifically for a book, you can search by the name ofthe author. 3. A user can check out books, journals, or magazines: The user needs to find the item first, then they can check it out. A user cannot check out an item that is already checked out. 4. A user can return books, journals, or magazines: A user can return an item. The user needs to find the item first, then they can return it.Explanation / Answer
#include<fstream.h>
#include<conio.h>
#include<stdio.h>
#include<process.h>
#include<string.h>
#include<iomanip.h>
void create_book(std::ostream& out, std::istream& in)
{
out<<" NEW BOOK ENTRY... ";
out<< " Enter Book Number : ";
in>>bno;
out<< " Enter Name of the Book : ";
std::getline(in, bookName);
out<<" Enter Author's name : ";
std::getline(in, authName);
out<<" Book Created...";
}
Related Questions
Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.