Hi everyone, I'm just a beginner here and would appreciate it if anyone could help me add an option to repeat the game and add a win count after every round.
The game I was trying to code is rock, paper, scissors, and I got everything down except for the part I need help with. Thank you all. Below is my code...
do //line 73
{...
if(player won) //do you have a way to know this, or can you get it?
count++ //create this out of the loop initially zero etc
cout do you want to play again? //create variable to deal with this response, cin their answer...
cin >> variable;
}
while(variable != 'N' || variable != 'n');