1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
|
#include <iostream>
#include <string>
#include <ctime>
void computerChoice(int choice)
{
switch (choice)
{
case 0: std::cout << "Computer randomly played rock.\n";
break;
case 1: std::cout << "Computer randomly played paper.\n";
break;
case 2: std::cout << "Computer randomly played scissors.\n";
break;
}
}
void score(int WIN, int LOSE)
{
std::cout << "User Score: " << WIN << "\nComputer Score: " << LOSE << std::endl;
}
//char userPrompt(char input)
//{
// std::cout << "Player choose (R-rock, P-paper, or S-scissors)? ";
// std::cin >> input;
// return input;
//}
int main()
{
srand(time(0));
char userInput = ' ';
int computerInput;
char repeat;
int win = 0;
int lose = 0;
do
{
std::cout << "----------------------------------------------\n";
std::cout << "Player choose (R-rock, P-paper, or S-scissors)? ";
std::cin >> userInput;
userInput = toupper(userInput);
while (userInput != 'R' && userInput != 'P' && userInput != 'S')
{
std::cout << "ERROR-1A: Must be a character from the list of 'R', 'P', or 'S'.\n";
std::cout << "Player choose (R-rock, P-paper, or S-scissors)? ";
std::cin >> userInput;
userInput = toupper(userInput);
if (userInput == 'R' || userInput == 'P' || userInput == 'S')
break;
}
std::cout << "\n";
while (true)
{
computerInput = rand() % 10;
if (computerInput == 0 || computerInput == 1 || computerInput == 2)
break;
}
if (userInput == 'R' && computerInput == 0)
{
computerChoice(computerInput);
score(win, lose);
}
else if (userInput == 'R' && computerInput == 1)
{
lose++;
computerChoice(computerInput);
score(win, lose);
}
else if (userInput == 'R' && computerInput == 2)
{
win++;
computerChoice(computerInput);
score(win, lose);
}
else if (userInput == 'P' && computerInput == 0)
{
lose++;
computerChoice(computerInput);
score(win, lose);
}
else if (userInput == 'P' && computerInput == 1)
{
computerChoice(computerInput);
score(win, lose);
}
else if (userInput == 'P' && computerInput == 2)
{
lose++;
computerChoice(computerInput);
score(win, lose);
}
else if (userInput == 'S' && computerInput == 0)
{
lose++;
computerChoice(computerInput);
score(win, lose);
}
else if (userInput == 'S' && computerInput == 1)
{
win++;
computerChoice(computerInput);
score(win, lose);
}
else if (userInput == 'S' && computerInput == 2)
{
computerChoice(computerInput);
score(win, lose);
}
std::cout << "\nPlay again (Y-yes || N-no)? ";
std::cin >> repeat;
std::cout << "\n";
repeat = toupper(repeat);
while (repeat != 'Y' && repeat != 'N')
{
std::cout << "Invalid input. Must be Y || N only.\n";
std::cout << "Play again (Y-yes || N-no)? ";
std::cin >> repeat;
std::cout << "\n";
repeat = toupper(repeat);
if (repeat == 'Y' || repeat == 'N')
break;
}
} while (repeat == 'Y');
return 0;
}
|