This repository contains a collection of beginner-friendly Java console-based games built to practice core programming concepts.
๐ฏ Guess The Number
- A number guessing game where the player tries to find a randomly generated number with hints.
โโญ Tic Tac Toe (New)
-
A two-player Tic Tac Toe game implemented in both:
- Procedural approach
- Object-Oriented Programming (OOP) with modular class design
-
(More coming soon...)
- Java
- Console-based input/output
- Core programming concepts (loops, conditionals, input handling)
- Object-Oriented Programming (Encapsulation, Modularity)
- Navigate to the desired game folder
- Compile:
javac FileName.java - Run:
java FileName
This repository is created to:
- Strengthen Java fundamentals
- Practice problem-solving and logic building
- Understand transition from procedural programming to OOP
- Build structured and modular applications