-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhangman.cpp
More file actions
124 lines (122 loc) · 2.71 KB
/
Copy pathhangman.cpp
File metadata and controls
124 lines (122 loc) · 2.71 KB
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
/*
* hangman.cpp
*
* Created on: 27 Jul 2022
* Author: Acer
*/
#include <iostream>
#include <string>
#include <stdio.h>
#include <time.h>
#define arrSize(a) sizeof(a)/sizeof(a[0])
using namespace std;
int randInt(int a, int b){
return (rand() % (b - a + 1)) + a;
}
int main(){
string frames[] = {
" _________\n"
" | |\n"
" | |\n"
" | \n"
" | \n"
" | \n"
" | \n"
"/|\\ \n",
" _________\n"
" | |\n"
" | |\n"
" | O\n"
" | \n"
" | \n"
" | \n"
"/|\\ \n",
" _________\n"
" | |\n"
" | |\n"
" | O\n"
" | |\n"
" | \n"
" | \n"
"/|\\ \n",
" _________\n"
" | |\n"
" | |\n"
" | O\n"
" | |\\\n"
" | \n"
" | \n"
"/|\\ \n",
" _________\n"
" | |\n"
" | |\n"
" | O\n"
" | /|\\\n"
" | \n"
" | \n"
"/|\\ \n",
" _________\n"
" | |\n"
" | |\n"
" | O\n"
" | /|\\\n"
" | |\n"
" | \n"
"/|\\ \n",
" _________\n"
" | |\n"
" | |\n"
" | O\n"
" | /|\\\n"
" | |\n"
" | \\\n"
"/|\\ \n",
" _________ \n"
" | | \n"
" | | \n"
" | O \n"
" | /|\\ \n"
" | | \n"
" | / \\ \n"
"/|\\ \n",
};
srand(time(0));
int size = arrSize(frames);
int tries = size;
string words[] = {"intelligence", "embedded", "arithmetic","object",
"oriented", "functional", "directive"};
string word = words[randInt(0, size)-1];
int length = word.length();
char guess;
char unknown[length];
for (int i = 0; i<length; i++) unknown[i] = '_';
do {
cout << frames[size-tries];
for (char ch : unknown) cout << ch;
cout << endl;
cout << "Enter a letter:";
cin >> guess;
int correct = 0;
for (int i = 0; i<length; i++){
if (guess == word[i]){
cout << "You've guessed correctly!" << endl;
correct = 1;
for (int j = 0; j<length; j++){
if (guess == word[j]) unknown[j] = guess;
}
if (unknown == word){
cout << "You've won! Good job! The word was "<< word << endl;
tries = 0;
}
break;
}
}
if (!correct) {
tries--;
if (tries == 0)cout << "You've lost all of your tries! The word was " << word << endl;
if (tries > 0) cout << "Your guess was wrong! You've lost " << size - tries << (tries == (size-1) ? " try" : " tries") << endl;
}
} while (tries > 0);
cout << endl;
return 0;
}