Library Management System - Java Experimental

This is a simple Java project that implements a basic Library Management System. The system allows users to perform operations such as adding books, borrowing books, returning books, and displaying the list of available books.

Features

  • Add a book to the library
  • Borrow a book
  • Return a book
  • Display the list of available books

Get Started

  1. Clone the repository:
git clone https://github.com/zihaarn/lib-management-system.git
  1. Open the project in your favorite Java IDE
  2. Run the 'LibraryApp' class to test the Library Management System

Usage

  1. Use the 'addBook' method to add a new book to the library
library.addBook("The Great Gatsby", "F. Scott Fitzgerald");
  1. Use the 'borrowBook' method to borrow a book.
library.borrowBook("The Great Gatsby");
  1. Use the 'returnBook' method to return a borrowed book
library.returnBook("The Great Gatsby");
  1. Use the 'displayAvailableBooks' method to see the list of available books
library.displayAvailableBooks();

Contributing

Contributions are welcome! If you have any ideas for improvement or new features, feel free to fork the repository and submit a pull request.