This is a simple command-line implementation of the classic Stone-Paper-Scissors game in Java. The game allows a single player to play against the computer. The player and the computer each choose one of the three options (stone, paper, or scissors), and the winner is determined based on the rules of the game.
- Single-player mode: Allows the player to play against the computer.
- Win detection: The game determines the winner based on the choices made by the player and the computer.
- Score tracking: The game keeps track of the player's score.
- Stone crushes scissors, scissors cuts paper, paper covers stone.
- If both the player and the computer choose the same option, it's a tie.