-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHelp.java
206 lines (79 loc) · 10.5 KB
/
Help.java
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
import java.io.*;
public class Help
{
void Print()
{
System.out.println("_________________________________________________________________________________________"+"\n"+
" About...."+"\n"+
"---------------------"+"\n"+"\n"+
" This is my first complete software in class 10th.... "+"\n"+
" The program is built in BlueJ environment....."+"\n"+
" And no copy is done from any source......"+"\n"+
" It is not done as for school purpose or as an assignment work....."+"\n"+
" its just a love..,passion..for computers..."+"\n"+"\n"+
" Stop 'Studying'!!!! for marks..!!!!!! but learn something...."+"\n"+"\n"+
"Albert Einstein - KNOWLEDGE IS LIMITED...IMAGINATION ENCIRCLES THE WORLD!!!!!!!!"+"\n"+
"___________________________________________________________________________________________"+"\n"+"\n"+"\n"+"\n"+"\n"+
"______________________________________________________________________________________"+"\n"+
"How to Play....."+"\n"+
"--------------------"+"\n"+"\n"+
"STEP-1>>>>>> you will get a main menu on screen..."+"\n"+"\n"+"\n"+
" |-------------------------------------|"+"\n"+
" | M E N U |"+"\n"+
" |-------------------------------------|"+"\n"+
" | |"+"\n"+
" | Enter 1 to .......PLAY |"+"\n"+
" | Enter 2 to........HELP |"+"\n"+
" | Enter 3 to........EXIT |"+"\n"+
" |-------------------------------------|"+"\n"+"\n"+
" Enter your choice here................."+"\n"+
"STEP-2>>>> enter your choice........"+"\n"+"\n"+
"STEP-3>>>> select single player or double player"+"\n"+"\n"+
"STEP-4>>>> select no. of laps......."+"\n"+"\n"+
"STEP-5>>>> A racing track will appear on screen..."+"\n"+"\n"+
" ____________________________________________________________________________________________________________________________________"+"\n"+
" _____________________________________________________________________________________________________________________________________"+"\n"+"\n"+"\n"+
" |#| |#|"+"\n"+
" Player1 |S| |#|"+"\n"+
" ____ |#| |#|"+"\n"+
"_/|--|)___ |#| |#|"+"\n"+
"'--@---@---' |T| |#|"+"\n"+
" |#| |#|"+"\n"+
" |#| |#|"+"\n"+
" |A| |#|"+"\n"+
" Player2 |#| |#|"+"\n"+
" ____ |#| |#|"+"\n"+
"_/|--|)___ |R| |#|"+"\n"+
"'--@---@---' |#| |#|"+"\n"+
" |T| |#|"+"\n"+
"____________________________________________________________________________________________________________________________________"+"\n"+
"_____________________________________________________________________________________________________________________________________"+"\n"+"\n"+"\n"+"\n"+
"STEP-6>>>> You will be asked to throw dice...(you can do that by entering 'T'/'t')"+"\n"+"\n"+
" your score will apper...."+"\n"+
" e.g.---if you scored 4....."+"\n"+
" you will get......"+"\n"+"\n"+"\n"+
" ___________ "+"\n"+
" | | "+"\n"+
" | @ @ | "+"\n"+
" | | "+"\n"+
" | @ @ | "+"\n"+
" |___________| "+"\n"+"\n"+"\n"+
" and your car will move 4 steps ahead......."+"\n"+"\n"+"\n"+
"----------------------------------------------------------------------------------------------------------------------------------------"+"\n"+
" # # "+"\n"+
" # Player1 # "+"\n"+
" # ____ # "+"\n"+
" # _/|--|)___ # "+"\n"+
" # '--@---@---' # "+"\n"+
" # # "+"\n"+
" # # "+"\n"+
" # # "+"\n"+
" # Player2 # "+"\n"+
" # ____ # "+"\n"+
" # _/|--|)___ # "+"\n"+
" #'--@---@---' # "+"\n"+
" # # "+"\n"+
"--------------------------------------------------------------------------------------------------------------------------------------- "+"\n"+"\n"+"\n"+"\n"+"\n"+
"The player who will finish the race....obviously he/she will be the winner!!!!!!!!!!!!!!!!!!!!!"+"\n"+"\n"+"\n"+"\n"+"\n");
}
}