-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHangman.java
More file actions
196 lines (184 loc) · 3.64 KB
/
Hangman.java
File metadata and controls
196 lines (184 loc) · 3.64 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
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
import java.util.Scanner;
public class Hangman {
public static void main(String[] args){
mainloop();
}
public static void mainloop(){
boolean isNotDead = true;
int errors = 0;
String allGuesses = "";
String input = "";
String word = word();
String[] guessed = new String[word.length()];
String[] blanked = blanker(guessed);
while(isNotDead){
allGuesses = allGuesses+goodGuess(word,input,blanked);
System.out.println(allGuesses);
input = input();
letters(word ,input , blanked);
errors = error(word,input,blanked,errors);
isNotDead = gallows(errors);
}
System.out.println("You lose. The correct word was "+word());
}
public static String input(){
System.out.print("Pick a letter: ");
Scanner console = new Scanner(System.in);
String input= console.next();
String u_input = input.toLowerCase();
return u_input;
}
public static String[] blanker(String guessed[]){
for(int i = 0; i<guessed.length ; i++){
guessed[i] = "_";
}
return guessed;
}
public static String word(){
return "mississippi";
}
public static String[] letters(String word, String guess, String guessed[]){
String [] letters = new String[word.length()];
int correct = 0;
for(int i = 0; i<word.length(); i++){
letters[i]=word.substring(i,i+1);
if (letters[i].equals(guess)){
guessed[i] = letters[i];
correct = 1;
}
System.out.print(guessed[i]);
}
if (correct == 0){
System.out.println("\nWrong");
}
return guessed;
}
public static String goodGuess(String word, String guess, String guessed[]){
String [] letters = new String[word.length()];
int correct = 0;
for(int i = 0; i<word.length(); i++){
letters[i]=word.substring(i,i+1);
if (letters[i].equals(guess)){
guessed[i] = letters[i];
correct = 1;
}
}
if (correct == 0){
return guess;
}
return "";
}
public static int error(String word, String guess, String guessed[], int wrong){
String [] letters = new String[word.length()];
int correct = 0;
for(int i = 0; i<word.length(); i++){
letters[i]=word.substring(i,i+1);
if (letters[i].equals(guess)){
correct = 1;
}
}
if (correct == 0){
wrong++;
}
return wrong;
}
public static boolean gallows(int a){
System.out.println("______\n| |");
if(a==0){
epost();
epost();
epost();
epost();
footer();
return true;
}
else if(a==1){
post();
head();
epost();
epost();
epost();
footer();
return true;
}
else if(a==2){
post();
head();
post();
body();
epost();
epost();
footer();
return true;
}
else if(a==3){
post();
head();
post();
leftarm();
epost();
epost();
footer();
return true;
}
else if(a==4){
post();
head();
post();
rightarm();
epost();
epost();
footer();
return true;
}
else if(a==5){
post();
head();
post();
rightarm();
post();
leftleg();
epost();
footer();
return true;
}
else {
post();
System.out.println("(ded)");
post();
rightarm();
post();
rightleg();
epost();
footer();
return false;
}
}
public static void footer(){
System.out.println("|_______");
}
public static void head(){
System.out.println("('n')");
}
public static void body(){
System.out.println(" |");
}
public static void leftarm(){
System.out.println(" /| ");
}
public static void rightarm(){
System.out.println(" /|\\");
}
public static void leftleg(){
System.out.println(" /");
}
public static void rightleg(){
System.out.println(" / \\");
}
public static void post(){
System.out.print("| ");
}
public static void epost(){
System.out.println("| ");
}
}