Closed Bharat00007 closed 3 months ago
Thank you for submitting your pull request! 🙌 We'll review it as soon as possible. In the meantime, please ensure that your changes align with our [CONTRIBUTING.md]. If there are any specific instructions or feedback regarding your PR, we'll provide them here. Thanks again for your contribution! 😊
Pull Request Description #404
Overview
This pull request introduces a simple Library Management System implemented in Java. The system supports basic library operations including adding books, issuing books, returning books, and displaying the list of available books. This implementation demonstrates fundamental object-oriented programming concepts and basic file management in Java.
Changes
Project_3.java
:main
method to demonstrate the functionalities of the Library Management System.Library.java
:AddBook(String book)
: Adds a new book to the library.ShowAvailableBook()
: Displays all books currently available in the library.IssueBook(String book)
: Issues a specified book, removing it from the available list.returnBook(String book)
: Returns a specified book to the library, adding it back to the inventory.Features
Example Usage