Skip to content

Latest commit

 

History

History
43 lines (31 loc) · 999 Bytes

File metadata and controls

43 lines (31 loc) · 999 Bytes

OOP with Java

This repository contains a collection of Java projects designed to help you learn and practice Object-Oriented Programming (OOP) concepts.

Project Structure

The projects are organized into the following directories:

  • beginner: Simple projects that introduce basic OOP concepts.
  • advanced: More complex projects that cover advanced OOP topics.
  • others: Miscellaneous projects and code snippets.

Getting Started

To run any of the projects, you will need to have Java installed on your machine.

  1. Navigate to the project directory:
    cd projects/<category>/<project_name>
  2. Compile the Java files:
    javac *.java
  3. Run the main class:
    java Main

Projects

Beginner

  • BankManagementSystem
  • BankingSystem
  • EmployeeManagementSystem
  • LibrarySystem
  • SchoolManagementSystem
  • StudentManagementSystem

This README was generated by an AI assistant.