#include using namespace std; const char PAPER = 'p'; const char SCISSORS = 's'; const char ROCK = 'r'; int main() { char player1{' '}, player2{' '}; cout << "Player 1, enter your choice " ; cin >> player1; cout << "Player 2, enter your choice: "; cin >> player2; if (player1 == PAPER) { // paper stuff cout << "Player 1 has Paper " << endl; if( player2 == PAPER) { cout << "It is a tie" << endl; } else if (player2 == SCISSORS) { cout << "Player 2 wins" << endl; } else if (player2 == ROCK) { cout << "Player 1 wins" << endl; } else { cout << "Player 2 had bad input " << endl; } } else if (player1 == SCISSORS) { // scissors stuff cout << "Player 1 has Scissors " << endl; } else if (player1 == ROCK) { // rock stuff cout << "Player 1 has Rock " << endl; } else { // not paper, scissors, or rock cout << "Player 1 has Something, but I don't know what " << endl; } return 0; }