jitacm / -30DaysDevChallenge-

Welcome to the 30DayDevChallenge repository! This repository is dedicated to a month-long coding challenge designed to help developers of all levels enhance their skills through daily coding tasks and projects.
19 stars 28 forks source link

Library Management System / 30_Days_of_Java #404 #408

Closed Bharat00007 closed 3 months ago

Bharat00007 commented 3 months ago

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

Features

Example Usage


public class Project_3 {
    public static void main(String[] args) {
        Library library_management = new Library();
        library_management.AddBook("Operating System");
        library_management.AddBook("C++");
        library_management.AddBook("Data Structure");

        library_management.IssueBook("C++");
        library_management.ShowAvailableBook();

        library_management.returnBook("C++");
        library_management.ShowAvailableBook();
    }
}
github-actions[bot] commented 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! 😊