User Input
Learn to get the user’s input in the console.
We'll cover the following...
What we have
We have set up taking the number of rounds from the user and the game’s introduction. This is our inventory of already created functions:
// Function to display game introduction and rules
void displayIntroductionAndRules() {
cout << "Welcome to Rock-Paper-Scissors game!\n" << endl;
cout << "The
...