-
Notifications
You must be signed in to change notification settings - Fork 186
/
hangman game
88 lines (62 loc) · 1.88 KB
/
hangman game
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
Hangman game
#include <iostream>
#include <vector>
#include <cstdlib>
#include <ctime>
using namespace std;
void displayWord(string word, vector<bool> guessed) {
for (size_t i = 0; i < word.length(); i++) {
if (guessed[i]) {
cout << word[i] << " ";
} else {
cout << "_ ";
}
}
cout << endl;
}
bool isWordGuessed(vector<bool> guessed) {
for (bool g : guessed) {
if (!g) return false;
}
return true;
}
int main() {
vector<string> words = {"programming", "hangman", "computer", "cplusplus", "development"};
srand(static_cast<unsigned int>(time(0)));
string word = words[rand() % words.size()];
vector<bool> guessed(word.length(), false); // Tracks guessed letters
int attemptsLeft = 7; // Number of allowed wrong attempts
vector<char> wrongGuesses; // Stores wrong guesses
cout << "Welcome to Hangman!\n";
while (attemptsLeft > 0) {
cout << "\nAttempts left: " << attemptsLeft << endl;
displayWord(word, guessed);
cout << "Wrong guesses: ";
for (char c : wrongGuesses) {
cout << c << " ";
}
cout << endl;
cout << "Enter a letter: ";
char guess;
cin >> guess;
bool correctGuess = false;
for (size_t i = 0; i < word.length(); i++) {
if (word[i] == guess) {
guessed[i] = true;
correctGuess = true;
}
}
if (!correctGuess) {
wrongGuesses.push_back(guess);
attemptsLeft--;
}
if (isWordGuessed(guessed)) {
cout << "Congratulations! You guessed the word: " << word << endl;
break;
}
}
if (attemptsLeft == 0) {
cout << "Game over! The word was: " << word << endl;
}
return 0;
}