-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtrytocodethis.cpp
More file actions
293 lines (234 loc) · 4.58 KB
/
trytocodethis.cpp
File metadata and controls
293 lines (234 loc) · 4.58 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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
#include<iostream.h>
#include<stdlib.h>
#include<string.h>
#include<math.h>
#include<time.h>
char a;
char response;
char finald;
char fp;
int wager;
const int x=3;
const int y=3;
int money;
int money1;
char Slots[x][y]={'*','*','*',
'*','*','*',
'*','*','*'};
int main();
void spinem();
void showem();
void wage();
void winlose();
void again();
void spinem()
// Slot Machine Starts
{
for (int a=0;a<3;a++)
{
for (int b=0;b<3;b++)
{
Slots[a][b]=rand()%5+1;
}
}
}
void showem()
// Slot Machine Visable
{
char a='y';
for (int aa=0;aa<3;aa++)
{
for(int bb=0;bb<3;bb++)
{
cout<<Slots[aa][bb]<<" ";
}
cout<<endl;
}
}
void wage()
{
money=100;
cout<<"You have this much money $"<<money<<endl;
cout<<endl;
cout<<"Would you like to make a wager?(y or n)";
cin>>fp;
if(fp=='y')
{
cout<<"Please input your wager ($10,20,50)"<<endl;
cout<<"$";
cin>>wager;
if (wager==10||wager==20||wager==50)
{
cout<<"You have bet $"<<wager<<endl;
cout<<"Type y to continue or n to start over"<<endl;
cin>>finald;
if (finald=='y')
{
system("cls");
spinem();
showem();
winlose();
}
else
{
system("cls");
wage();
}
}
else
{
cout<<"Please enter an amount of 10,20, or 50"<<endl;
cout<<endl<<endl<<endl<<endl;
wage();
}
}
else if(fp=='n')
{
cout<<"Mode is set to free play,type y to continue"<<endl;
cin>>finald;
if (finald=='y')
{
system("cls");
spinem();
showem();
}
else
{
system("cls");
wage();
}
}
}
void winlose()
{
if (wager>=10) //Money bet is greater or equal to $10
{
if (Slots[1][0]==Slots[1][1] && Slots[1][0]==Slots[1][2]) //Middle Row Winning
{
money=money+10; //Wager is doubled, because of win
}
else
{
money=money-10; //Wager is lost from total money because of loss.
}
}
if (wager>=20) //Money bet is greater or equal to $20
{
if (Slots[0][0]==Slots[0][1] && Slots[0][0]==Slots[0][2]) //Top Row Winning
{
money=money+10; //Wager is doubled, because of win
}
else
{
money=money-10; //Wager is lost from total money because of loss.
}
}
if (wager>=20) //Money bet is greater or equal to $20
{
if (Slots[2][0]==Slots[2][1] && Slots[2][0]==Slots[2][2]) //Bottem Row Winning
{
money=money+10; //Wager is doubled, because of win
}
else
{
money=money-10; //Wager is lost from total money because of loss.
}
}
if (wager>=50) //Money bet is greater or equal to $50
{
if (Slots[0][0]==Slots[1][1] && Slots[0][0]==Slots[2][2]) //Diagonal Left Row Winning
{
money=money+30; //Wager is doubled, because of win
}
else
{
money=money-30; //Wager is lost from total money because of loss.
}
}
if (wager>=50) //Money bet is greater or equal to $50
{
if (Slots[0][2]==Slots[1][1] && Slots[0][2]==Slots[2][0]) //Diagonal Right Row Winning
{
money=money+30; //Wager is doubled, because of win
}
else
{
money=money-30; //Wager is lost from total money because of loss.
}
}
cout<<money<<endl<<endl<<endl;
}
void again()
{
cout<<endl<<"Would you like to play again? (y or n)"<<endl;
cin>>a;
if (a=='y')
{
wage();
}
else
{
system("cls");
cout<<"Please close the window"<<endl;
}
}
int main()
// Main
{
srand(time(0));
int money=100;
char response='y';
wage();
again();
return 0;
}