This is a simple Online Library simulation program written in Java. It allows users to:
- View available books in the library
- Add new books to the library
- Issue books to users
- Return issued books
The program uses basic Java concepts such as:
- Loops
- Conditionals
- Methods
- Static variables
- Arrays
- Scanner for user input
- ✅ Show Available Books
- 📖 Add New Book
- 💳 Issue a Book
- 🔄 Return a Book
- 🚪 Exit the Program
- The user is shown a menu with options.
- The user selects an option by entering a number.
- Based on the selection, the corresponding method is executed:
- Show the list of available books.
- Add a new book to the library.
- Issue a book (mark it as "not available").
- Return a book (mark it as "available").
- The program continues running until the user selects "Exit".
- Java JDK (version 8 or above)
- A Java IDE like IntelliJ, Eclipse, or simply a text editor + command line
- Clone the repo
git clone https://github.com/yourusername/Online-Library-System-in-java.git
cd Online-Library-System-in-java- Compile and Run
javac OnlineLibrary.java
java OnlineLibrary
- Subham Sidhanta
- 📧 Instagram: subham__sidhanta_
- 📧 github: Subhamsidhanta



