This project is a simple implementation of the classic Rock-Paper-Scissors game written in C++. It allows a single player to compete against the computer in a match of strategy and chance.
- Single-player mode against a computer opponent.
- Randomized computer choices for fair gameplay.
- User-friendly interface for input and feedback.
- Input validation to ensure smooth gameplay.
- Run the program.
- Enter your choice: Rock, Paper, or Scissors (R/P/S).
- The computer will randomly generate its choice.
- The winner will be determined based on the rules:
- Rock beats Scissors.
- Scissors beats Paper.
- Paper beats Rock.
- The result will be displayed: Win, Lose, or Draw.
- A C++ compiler (e.g., GCC, Clang, MSVC).
- C++17 or later (optional but recommended).
├── main.cpp ## Main source code file
├── README.md ## Project documentation
├── LICENSE ## License for the project
└── .gitignore ## Git ignore file```