Write in C++
Abstract/Virtual Rock Paper Scissors
Create an abstract Player class that consists of private data
for name, selection, wins, and losses. It must have a non-default
constructor that requires name. It may not contain a default
constructor. Create overloaded functions for the ++ and - -
operator. The overloaded ++operator will add to the number of wins,
while the - - operator will add to the losses.
You will create two different child classes of player, Human and...