Skip to content

Latest commit

 

History

History
68 lines (51 loc) · 2.37 KB

README.md

File metadata and controls

68 lines (51 loc) · 2.37 KB

🎯 Math Quiz Game in C++ 🧮

An interactive console-based math quiz game built in C++ that challenges players with randomly generated arithmetic questions. Players can select difficulty levels and operation types, and the game provides real-time feedback with color-coded results. 🎨✅❌

🚀 Features

✅ Play up to 100 questions per round
✅ Choose from Easy, Medium, Hard, or Mixed difficulty levels
✅ Supports Addition (+), Subtraction (-), Multiplication (*), and Division (/)
Randomized questions for a unique experience each time
Color-coded feedback:

  • 🟩 Green for correct answers
  • 🟥 Red + Sound for incorrect answers
  • 🟨 Yellow for a draw
    Final score summary
    ✅ Option to play again

📜 How to Play

1️⃣ Run the program
2️⃣ Choose the number of questions (1 to 100)
3️⃣ Select a difficulty level:

  • 1 for Easy
  • 2 for Medium
  • 3 for Hard
  • 4 for Mixed
    4️⃣ Pick an operation type:
  • 1 for Addition (+)
  • 2 for Subtraction (-)
  • 3 for Multiplication (*)
  • 4 for Division (/)
  • 5 for Mixed Operations
    5️⃣ Answer the generated questions
    6️⃣ View your final results
    7️⃣ Play again or exit

🛠 Code Overview

  • Random Number Generator: Generates random numbers based on the difficulty level
  • Game Logic: Uses an enum-based system to structure operations
  • User Input Handling: Ensures valid input for questions and difficulty
  • Structured Design: Organized using functions, structs, and enums
  • Console Formatting: Colors and formatting enhance user experience

🔧 Technologies Used

  • Language: C++
  • Concepts: Loops, Functions, Structs, Enums, Randomization
  • Libraries: <iostream>, <cstdlib>, <ctime>, <string>

🎯 Learning Outcomes

  • Practice C++ enums, structs, and functions
  • Understand random number generation
  • Improve user input validation and console formatting
  • Learn to implement interactive CLI-based games

📜 License

This project is open-source. Feel free to fork, modify, and improve it! 🎉

🤝 Contributions

Contributions are welcome! If you have improvements, submit a Pull Request 🚀


📌 Enjoy the challenge! Happy coding! 🎮🎯