#include
#include
// Create a game of Rock Paper Scissors where you will be going up against the computer
// Super simple: Rock -> Scissors / Scissors -> Paper / Paper -> Rock
using std::cin;
using std::cout;
int main(){
srand(time(NULL));
char gameSelect;
char weaponSelect;
cout gameSelect;
if(gameSelect == 'Y'){
}
else if(gameSelect == 'N'){
cout
Подробнее здесь: [url]https://stackoverflow.com/questions/79259860/why-is-my-else-running-2x-instead-of-running-once-when-given-an-invalid-input[/url]
// Create a game of Rock Paper Scissors where you will be going up against the computer // Super simple: Rock -> Scissors / Scissors -> Paper / Paper -> Rock