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. 🎨✅❌
✅ 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
1️⃣ Run the program
2️⃣ Choose the number of questions (1 to 100)
3️⃣ Select a difficulty level:
1
for Easy2
for Medium3
for Hard4
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
- 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
- Language: C++
- Concepts: Loops, Functions, Structs, Enums, Randomization
- Libraries:
<iostream>
,<cstdlib>
,<ctime>
,<string>
- Practice C++ enums, structs, and functions
- Understand random number generation
- Improve user input validation and console formatting
- Learn to implement interactive CLI-based games
This project is open-source. Feel free to fork, modify, and improve it! 🎉
Contributions are welcome! If you have improvements, submit a Pull Request 🚀
📌 Enjoy the challenge! Happy coding! 🎮🎯