This is a simple Stone Paper Scissor game implemented in C++ programming language. The game allows a user to play against the computer. The computer randomly selects one of the three options (✊ Stone, 📄 Paper, or ✂️ Scissor), and the user inputs their choice. The game then determines the winner based on the standard rules of Stone Paper Scissor.
- 🎮 User vs Computer gameplay
- 🎲 Random selection of ✊ Stone, 📄 Paper, or ✂️ Scissor by the computer
- 🏆 Determines the winner based on the rules:
- ✊ Stone beats ✂️ Scissor
- ✂️ Scissor beats 📄 Paper
- 📄 Paper beats ✊ Stone
- 🖥️ C++ compiler (e.g., GCC, Clang)
- 📚 C++ standard library