CJCoding With Joseph

Rock Paper Scissors Winner

Read two characters p1 and p2, each one of R (Rock), P (Paper), or S (Scissors), representing the choices of Player 1 and Player 2. The rules are: Rock beats Scissors, Scissors beats Paper, Paper beats Rock. Print the result:

- Player 1 wins
- Player 2 wins
- Tie

For example, given the input R S, Rock beats Scissors, so the program prints:

Player 1 wins

Expected Output:

Player 1 wins
Topics:
If Statements
๐Ÿ“ฅ Auto-Input:
R S
This input is automatically fed to your program's stdin
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.