FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Java-Programming-Exercises/DotComBust.java at master · RoyTien/Java-Programming-Exercises · GitHub
RoyTien
/
Java-Programming-Exercises
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
Java-Programming-Exercises
/
DotComBust.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
132 lines (114 loc) · 3.03 KB
Breadcrumbs
Java-Programming-Exercises
/
DotComBust.java
Copy path
File metadata and controls
132 lines (114 loc) · 3.03 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
import
java
.
util
.*;
public
class
DotComBust
{
private
GameHelper
helper
=
new
GameHelper
();
private
ArrayList
<
DotCom
>
dotComsList
=
new
ArrayList
<
DotCom
>();
private
int
numOfGuesses
=
0
;
private
void
setUpGame
(){
DotCom
one
=
new
DotCom
();
one
.
setName
(
"Pets.com"
);
DotCom
two
=
new
DotCom
();
two
.
setName
(
"eToys.com"
);
DotCom
three
=
new
DotCom
();
three
.
setName
(
"Go2.com"
);
dotComsList
.
add
(
one
);
dotComsList
.
add
(
two
);
dotComsList
.
add
(
three
);
System
.
out
.
println
(
""
);
for
(
DotCom
dotComToSet
:
dotComsList
){
ArrayList
<
String
>
newLocation
=
helper
.
placeDotCom
(
3
);
dotComToSet
.
setLocationCells
(
newLocation
);
}
}
private
void
startPlaying
(){
while
(!
dotComsList
.
isEmpty
()){
String
userGuess
=
helper
.
getUserInput
(
"Enter a guess"
);
checkUserGuess
(
userGuess
);
}
finishGame
();
}
private
void
checkUserGuess
(
String
userGuess
){
numOfGuesses
++;
String
result
=
"miss"
;
for
(
DotCom
dotComToTest
:
dotComsList
){
result
=
dotComToTest
.
checkYourself
(
userGuess
);
if
(
result
.
equals
(
"hit"
)){
break
;
}
if
(
result
.
equals
(
"kill"
)){
dotComsList
.
remove
(
dotComToTest
);
break
;
}
}
System
.
out
.
println
(
result
);
}
private
void
finishGame
(){
System
.
out
.
println
();
if
(
numOfGuesses
<=
18
){
}
else
{
}
}
public
static
void
main
(
String
[]
args
){
DotComBust
game
=
new
DotComBust
();
game
.
setUpGame
();
game
.
startPlaying
();
}
}
/*import java.util.*;
public class DotComBust{
private GameHelper helper = new GameHelper();
private ArrayList<DotCom> dotComsList = new ArrayList<DotCom>();
private int numOfGuesses = 0;
private void setUpGame(){
DotCom one = new DotCom();
one.setName("Pets.com");
DotCom two = new DotCom();
two.setName("eToys.com");
DotCom three = new DotCom();
three.setName("Go2.com");
dotComsList.add(one);
dotComsList.add(two);
dotComsList.add(three);
System.out.println("Your goal is to sink three dot coms.");
System.out.println("Pets.com, eToys.com, Go2.com");
System.out.println("Try to sink them all in the fewest number of guesses");
for(DotCom dotComToSet : dotComsList){
ArrayList<String> newLocation = helper.placeDotCom(3);
dotComToSet.setLocationCells(newLocation);
}
}
private void startPlaying(){
while(!dotComsList.isEmpty()){
String userGuess = helper.getUserInput("Enter a guess");
checkUserGuess(userGuess);
}
finishGame();
}
private void checkUserGuess(String userGuess){
numOfGuesses++;
String result = "miss";
for(DotCom dotComToTest : dotComsList){
result = dotComToTest.checkYourself(userGuess);
if(result.equals("hit")){
break;
}
if(result.equals("kill")){
dotComsList.remove(dotComToTest);
break;
}
}
System.out.println(result);
}
private void finishGame(){
System.out.println("All Dot Coms are dead! Your stock is now worthless.");
if(numOfGuesses <= 18){
System.out.println("less than 18");
}else{
System.out.println("Too much");
}
}
public static void main(String[] args){
DotComBust game = new DotComBust();
game.setUpGame();
game.startPlaying();
}
}*/
Back
|
FazBrowse Home
|
New Git URL