Skip to content

Latest commit

 

History

History
47 lines (31 loc) · 1.04 KB

File metadata and controls

47 lines (31 loc) · 1.04 KB

🎮 Java Console Games

This repository contains a collection of beginner-friendly Java console-based games built to practice core programming concepts.


📂 Games Included -

🎯 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...)


🚀 Tech Used-

  • Java
  • Console-based input/output
  • Core programming concepts (loops, conditionals, input handling)
  • Object-Oriented Programming (Encapsulation, Modularity)

▶️ How to Run

  1. Navigate to the desired game folder
  2. Compile: javac FileName.java
  3. Run: java FileName

📌 Purpose

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