Open Bharat00007 opened 3 months ago
Thank you for creating this issue! 🎉
We'll look into it as soon as possible. In the meantime, please make sure to provide all the necessary details and context. If you have any questions or additional information, feel free to add them here. Your contributions are highly appreciated! 😊
You can also check our [CONTRIBUTING.md] for guidelines on contributing to this Domain.
Go ahead!
Issue: Explain Features and Functionalities of Library Management System
Description
This issue provides a detailed explanation of the features and functionalities of the Library Management System project. The system allows for managing a collection of books in a library, including adding, issuing, returning books, and displaying available books. The following details outline the core functionalities of the system.
Features and Functionalities
1. Add Book
AddBook(String book)
book
: The name of the book to be added (e.g., "Operating System").2. Show Available Books
ShowAvailableBook()
3. Issue Book
IssueBook(String book)
book
: The name of the book to be issued (e.g., "C++").4. Return Book
returnBook(String book)
book
: The name of the book to be returned (e.g., "C++").returnBook
method calls theAddBook
method to add the book back to the inventory.