Skip to content

Latest commit

 

History

History
107 lines (100 loc) · 2.62 KB

File metadata and controls

107 lines (100 loc) · 2.62 KB

☕ Java Mini Projects

This repository contains small Java console projects that I built while practicing Java programming. The goal of these projects is to strengthen my understanding of core Java concepts such as loops, conditionals, user input, and basic problem solving.

📂 Java Mini Projects

  1. Console Calculator
  2. Number Guessing Game
  3. Simple Interest Calculator
  4. Random Password Generator
  5. Student Grade Calculator
  6. Unit Converter
  7. Temperature Converter
  8. Multiplication Table Generator
  9. Simple To-Do List CLI
  10. Contact Manager CLI
  11. Student Management System
  12. Bank Account Simulator
  13. Simple Quiz App
  14. Rock Paper Scissors
  15. Tic Tac Toe (Console)

📂 Repository Structure


java-mini-projects
├── 01-console-calculator
│   ├── README.md
│   └── src
│       └── Calculator.java
│
├── 02-number-guessing-game
│   ├── README.md
│   └── src
│       └── NumberGuessGame.java
│
├── 03-simple-interest-calculator
│   ├── README.md
│   └── src
│       └── SimpleInterestCalculator.java
│
├── 04-random-password-generator
│   ├── README.md
│   └── src
│       └── PasswordGenerator.java
│
├── 05-student-grade-calculator
│   ├── README.md
│   └── src
│       └── GradeCalculator.java
│
├── 06-unit-converter
│   ├── README.md
│   └── src
│       └── UnitConverter.java
│
├── 07-temperature-converter
│   ├── README.md
│   └── src
│       └── TemperatureConverter.java
│
├── 08-multiplication-table-generator
│   ├── README.md
│   └── src
│       └── MultiplicationTable.java
│
├── 09-simple-todo-list-cli
│   ├── README.md
│   └── src
│       └── TodoListApp.java
│
├── 10-contact-manager-cli
│   ├── README.md
│   └── src
│       └── ContactManager.java
│
├── 11-student-management-system
│   ├── README.md
│   └── src
│       └── StudentManager.java
│
├── 12-bank-account-simulator
│   ├── README.md
│   └── src
│       └── BankAccount.java
│
├── 13-simple-quiz-app
│   ├── README.md
│   └── src
│       └── QuizApp.java
│
├── 14-rock-paper-scissors
│   ├── README.md
│   └── src
│       └── RockPaperScissors.java
│
├── 15-tic-tac-toe-console
│   ├── README.md
│   └── src
│       └── TicTacToe.java
│
└── README.md