โ Back to If Statements
Question 388
Rock Paper Scissors Winner
Rock Paper Scissors Winner
Read two charactersp1andp2, each one ofR(Rock),P(Paper), orS(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-TieFor example, given the inputR S, Rock beats Scissors, so the program prints: Player 1 wins
Expected Output:
Player 1 wins
Topics:
If Statements
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.