Hangman syntax
Jul 14, 2014 at 6:40pm UTC
Here are the functions for my hangman. I don't know if you'd like to run it for yourself but my variables aren't updating. For example after I input a guess, the string "lettersGuessedString" doesn't get update to add the letter that was correctly. Please suggest edits to fix this.
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 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
void hangman()
{
cout << "Welcome to Hangman!" << endl << endl;
string hangmanWords [4] = { "computer" , "charcoal" , "refrigerator" , "automobile" } ;
srand(time(NULL));
int hangmanShuffler = rand() % 4;
string wordToGuess = hangmanWords [hangmanShuffler];
//Set up an array with the letters in the word to guess
int wordToGuessLength = hangmanWords [hangmanShuffler].length();
cout << "Your word has " << wordToGuessLength << " letters in it" << endl << endl;
string lettersToGuess [wordToGuessLength];
int letterInputting;
string lettersGuessedString [wordToGuessLength];
for ( letterInputting=0; letterInputting < wordToGuessLength; letterInputting++ )
{
lettersToGuess [letterInputting] = wordToGuess [letterInputting];
lettersGuessedString [letterInputting] = "-" ;
}
int lettersGuessed = 0;
int attemptsAllowed = 7;
int attemptsTaken = 0;
//Actual Game
while ( lettersGuessed < wordToGuessLength && attemptsTaken < attemptsAllowed)
{
int incorrectGuess = 0;
if (incorrectGuess == 0)
{
hangman0X();
}
else if (incorrectGuess == 1)
{
hangman1X();
}
else if (incorrectGuess == 2)
{
hangman2X();
}
else if (incorrectGuess == 3)
{
hangman3X();
}
else if (incorrectGuess == 4)
{
hangman4X();
}
else if (incorrectGuess == 5)
{
hangman5X();
}
else if (incorrectGuess == 6)
{
hangman6X();
}
else if (incorrectGuess == 7)
{
hangman7X();
}
++attemptsTaken;
cout << "This is attempt # " << attemptsTaken << endl << endl;
cout << "Type in your guess and press 'Enter'" << endl << endl;
int guessInputting;
for ( guessInputting = 0; guessInputting < letterInputting; guessInputting++)
{
cout << lettersGuessedString [guessInputting];
}
cout << endl << endl;
string currentGuess;
cin >> currentGuess;
for ( int i = 0; i <= guessInputting; ++i )
{
if (currentGuess == lettersToGuess[i])
{
cout << "You guessed right!" << endl << endl;
lettersToGuess[i] = currentGuess;
hangman();
}
else
{
cout << "You guessed wrong :/" << endl << endl;
++incorrectGuess;
hangman();
}
}
}
cin.clear();
whatNext();
}
void hangman0X()
{
cout << " ._____. " << endl;
cout << " | | " << endl;
cout << " | O " << endl;
cout << " | \\|/ " << endl;
cout << " | | " << endl;
cout << " | / \\ " << endl;
cout << " | " << endl;
cout << " ___|___ " << endl << endl;
}
void hangman1X()
{
cout << " ._____. " << endl;
cout << " | | " << endl;
cout << " | O " << endl;
cout << " | \\|/ " << endl;
cout << " | | " << endl;
cout << " | X \\ " << endl;
cout << " | " << endl;
cout << " ___|___ " << endl << endl;
}
void hangman2X()
{
cout << " ._____. " << endl;
cout << " | | " << endl;
cout << " | O " << endl;
cout << " | \\|/" << endl;
cout << " | | " << endl;
cout << " | X X " << endl;
cout << " | " << endl;
cout << " ___|___ " << endl << endl;
}
void hangman3X()
{
cout << " ._____. " << endl;
cout << " | | " << endl;
cout << " | O " << endl;
cout << " | \\|/" << endl;
cout << " | X " << endl;
cout << " | X X " << endl;
cout << " | " << endl;
cout << " ___|___ " << endl << endl;
}
void hangman4X()
{
cout << " ._____. " << endl;
cout << " | | " << endl;
cout << " | O " << endl;
cout << " | X|/ " << endl;
cout << " | X " << endl;
cout << " | X X " << endl;
cout << " | " << endl;
cout << " ___|___ " << endl << endl;
}
void hangman5X()
{
cout << " ._____. " << endl;
cout << " | | " << endl;
cout << " | O " << endl;
cout << " | X|X " << endl;
cout << " | X " << endl;
cout << " | X X " << endl;
cout << " | " << endl;
cout << " ___|___ " << endl << endl;
}
void hangman6X()
{
cout << " ._____. " << endl;
cout << " | | " << endl;
cout << " | O " << endl;
cout << " | XXX " << endl;
cout << " | X " << endl;
cout << " | X X " << endl;
cout << " | " << endl;
cout << " ___|___ " << endl << endl;
}
void hangman7X()
{
cout << " ._____. " << endl;
cout << " | | " << endl;
cout << " | X " << endl;
cout << " | XXX " << endl;
cout << " | X " << endl;
cout << " | X X " << endl;
cout << " | " << endl;
cout << " ___|___ " << endl << endl;
}
Jul 14, 2014 at 6:57pm UTC
You set incorrectGuess to 0 at line 35. You then check the value of incorrectGuess in lines 37-68. It's value will never not be 0.
Topic archived. No new replies allowed.