[ create a new paste ] login | about

Link: http://codepad.org/ZVPVODsR    [ raw code | fork ]

HazElMagic - C++, pasted on Nov 12:
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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
// Roulette.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"

using namespace std;

//Calculates the users bank account if they win
int win (int bet, int odds, int account) {
	int newBank = 0;
	int oldBank = account;
	newBank = oldBank + (bet * odds);
	return newBank;
}

//Calculates users bank account if they lose
int lose (int bet, int account) {
	int newBank = 0;
	int oldBank = account;
	newBank = oldBank - bet;
	return newBank;
}

int _tmain(int argc, _TCHAR* argv[]) {
	int bankAccount = 500, playAgain = 1, betNumber = 0, betAmount = 0, betOdds = 35, randomNumber = 0, betChoice = 0;
	string betName[11] = {"Single Number", "Split Bet", "Corner Bet", "Street Bet", "Line Bet", "Dozens", "Odd or Even", "Red or Black", "Column Bets", "1-18", "19-36"};
	int betType[11] = {35, 17, 8, 11, 5, 2, 1, 1, 2, 1, 1};
	int red[18] = {1, 3, 5, 7, 9, 12, 14, 16, 18, 19, 21, 23, 25, 27, 30, 32, 34, 36};
	int black[18] = {2, 4, 6, 8, 10, 11, 13, 15, 17, 20, 22, 24, 26, 28, 29, 31, 33, 35};
	int firstColumn[12] = {1, 4, 7, 10, 13, 16, 19, 22, 25, 28, 31, 34};
	int secondColumn[12] = {2, 5, 8, 11, 14, 17, 20, 23, 26, 29, 32, 35};
	int thirdColumn[12] = {3, 6, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36};
	bool columnWin = false;
	bool colourWin = false;

	//Displays a large dollar sign
	cout << endl << "       " << (char)36 << (char)36 << (char)36 << (char)36 << (char)36;
	cout << endl << "       " << (char)36 << (char)58 << (char)58 << (char)58 << (char)36;
	cout << endl << "   " << (char)36 << (char)36 << (char)36 << (char)36 << (char)36 << (char)58 << (char)58 << (char)58 << (char)36 << (char)36 << (char)36 << (char)36 << (char)36;
	cout << endl << " " << (char)36 << (char)36 << (char)58 << (char)58 << (char)58 << (char)58 << (char)58 << (char)58 << (char)58 << (char)58 << (char)58 << (char)58 << (char)58 << (char)58 << (char)58 << (char)36;
	cout << endl << (char)36 << (char)58 << (char)58 << (char)58 << (char)58 << (char)58 << (char)36 << (char)36 << (char)36 << (char)36 << (char)36 << (char)36 << (char)36 << (char)58 << (char)58 << (char)58 << (char)58 << (char)36;
	cout << endl << (char)36 << (char)58 << (char)58 << (char)58 << (char)58 << (char)36 << "       " << (char)36 << (char)36 << (char)36 << (char)36 << (char)36;
	cout << endl << (char)36 << (char)58 << (char)58 << (char)58 << (char)58 << (char)36;
	cout << endl << (char)36 << (char)58 << (char)58 << (char)58 << (char)58 << (char)36;
	cout << endl << (char)36 << (char)58 << (char)58 << (char)58 << (char)58 << (char)58 << (char)36 << (char)36 << (char)36 << (char)36 << (char)36 << (char)36 << (char)36 << (char)36 << (char)36;
	cout << endl << " " << (char)36 << (char)36 << (char)58 << (char)58 << (char)58 << (char)58 << (char)58 << (char)58 << (char)58 << (char)58 << (char)58 << (char)58 << (char)58 << (char)58 << (char)36 << (char)36;
	cout << endl << "   " << (char)36 << (char)36 << (char)36 << (char)36 << (char)36 << (char)36 << (char)36 << (char)36 << (char)36 << (char)58 << (char)58 << (char)58 << (char)58 << (char)58 << (char)36;
	cout << endl << "            " << (char)36 << (char)58 << (char)58 << (char)58 << (char)58 << (char)36;
	cout << endl << "            " << (char)36 << (char)58 << (char)58 << (char)58 << (char)58 << (char)36;
	cout << endl << (char)36 << (char)36 << (char)36 << (char)36 << (char)36 << "       " << (char)36 << (char)58 << (char)58 << (char)58 << (char)58 << (char)36;
	cout << endl << (char)36 << (char)58 << (char)58 << (char)58 << (char)58 << (char)36 << (char)36 << (char)36 << (char)36 << (char)36 << (char)36 << (char)36 << (char)58 << (char)58 << (char)58 << (char)58 << (char)58 << (char)36;
	cout << endl << (char)36 << (char)58 << (char)58 << (char)58 << (char)58 << (char)58 << (char)58 << (char)58 << (char)58 << (char)58 << (char)58 << (char)58 << (char)58 << (char)58 << (char)36 << (char)36;
	cout << endl << " " << (char)36 << (char)36 << (char)36 << (char)36 << (char)36 << (char)58 << (char)58 << (char)58 << (char)36 << (char)36 << (char)36 << (char)36 << (char)36;
	cout << endl << "      " << (char)36 << (char)58 << (char)58 << (char)58 << (char)36;
	cout << endl << "      " << (char)36 << (char)36 << (char)36 << (char)36 << (char)36 << endl;
	cout << endl;

	cout << "*****************************" << endl;
	cout << "Welcome to Wildfire Roulette!" << endl;
	cout << "*****************************" << endl;

	//Checks if user wants to play
	while (playAgain == 1) {
		//Displays amount of money remaining in account
		cout << endl << "You have $" << bankAccount << " in your account." << endl << endl;
		
		for (int i = 0; i < 11; i++) {
			cout << i + 1 << ". " << betName[i] << " - " << betType[i] << " to 1" << endl;
		}

		cout << endl << "Please select a bet type: ";
		cin >> betChoice;

		while (betChoice < 1 || betChoice > 11) {
			cout << endl << "Please choose a number between 1 and 11, inclusive: ";
			cin >> betChoice;
		}

		cout << "You chose " << betName[betChoice - 1] << "." << endl;

		//Stores their bet odds in a variable
		betOdds = betType[betChoice - 1];

		//Checks which type of bet the user chose, and then proceeds with the calculations
		switch (betChoice) {
		case 1:
			//Asks for number to place bet on
			cout << endl << "Please choose a number to place your bet on: ";
			cin >> betNumber;

			//Checks if number is valid (between 1 and 36)
			while (betNumber < 1 || betNumber > 36) {
				cout << endl << "You must choose a valid number between 1 and 36, inclusive!" << endl;
				cout << "Please choose a number to place your bet on: ";
				cin >> betNumber;
			}

			//Asks for amount to bet on that number
			cout << endl << "How much would you like to bet on the number " << betNumber << "? $";
			cin >> betAmount;

			//Checks if minimum amount is $1 and if the player has enough money in their account
			while (betAmount < 1 || betAmount > bankAccount) {
				cout << endl << "You have $" << bankAccount << " in your bank account: $";
				cin >> betAmount;
			}

			//Seeds random number to the generator
			srand(time(0));

			//Generates a random number
			randomNumber = 1 + (rand() % 36);

			cout << endl << "The ball landed on the number " << randomNumber << ".";

			//Checks if player won or lost their bet
			if (betNumber == randomNumber) {
				bankAccount = win(betAmount, betOdds, bankAccount);
				cout << endl << "Congratulations, you won! You now have $" << bankAccount << " in your account." << endl;
			} else {
				bankAccount = lose(betAmount, bankAccount);
				cout << endl << "Bad luck, you lost! You now have $" << bankAccount << " in your account." << endl;
			}

			break;
		case 2:
			//Asks for the first number to place a bet on
			cout << endl << "Please choose your first number to place your bet on: ";
			cin >> betNumber;

			//Checks if number is valid (between 1 and 36)
			while (betNumber < 1 || betNumber > 33) {
				cout << endl << "You must choose a valid number between 1 and 33, inclusive!" << endl;
				cout << "Please choose a number to place your bet on: ";
				cin >> betNumber;
			}

			//Asks for amount to bet on that number
			cout << endl << "How much would you like to bet on the numbers " << betNumber << " and " << betNumber + 3 << "? $";
			cin >> betAmount;

			//Checks if minimum amount is $1 and if the player has enough money in their account
			while (betAmount < 1 || betAmount > bankAccount) {
				cout << endl << "You have $" << bankAccount << " in your bank account: $";
				cin >> betAmount;
			}

			//Seeds random number to the generator
			srand(time(0));

			//Generates a random number
			randomNumber = 1 + (rand() % 36);

			cout << endl << "The ball landed on the number " << randomNumber << ".";

			//Checks if player won or lost their bet
			if (betNumber == randomNumber || betNumber + 3 == randomNumber) {
				bankAccount = win(betAmount, betOdds, bankAccount);
				cout << endl << "Congratulations, you won! You now have $" << bankAccount << " in your account." << endl;
			} else {
				bankAccount = lose(betAmount, bankAccount);
				cout << endl << "Bad luck, you lost! You now have $" << bankAccount << " in your account." << endl;
			}

			break;
		case 3:
			//Asks for the first number to place a bet on
			cout << endl << "Please choose your first number to place your bet on: ";
			cin >> betNumber;

			//Checks if number is valid (between 1 and 36)
			while (betNumber < 1 || betNumber > 32) {
				cout << endl << "You must choose a valid number between 1 and 32, inclusive!" << endl;
				cout << "Please choose a number to place your bet on: ";
				cin >> betNumber;
			}

			//Asks for amount to bet on that number
			cout << endl << "How much would you like to bet on the numbers " << betNumber << ", " << betNumber + 1 << ", " << betNumber + 3 << " and " << betNumber + 4 << "? $";
			cin >> betAmount;

			//Checks if minimum amount is $1 and if the player has enough money in their account
			while (betAmount < 1 || betAmount > bankAccount) {
				cout << endl << "You have $" << bankAccount << " in your bank account: $";
				cin >> betAmount;
			}

			//Seeds random number to the generator
			srand(time(0));

			//Generates a random number
			randomNumber = 1 + (rand() % 36);

			cout << endl << "The ball landed on the number " << randomNumber << ".";

			//Checks if player won or lost their bet
			if (betNumber == randomNumber || betNumber + 1 == randomNumber || betNumber + 3 == randomNumber || betNumber + 4 == randomNumber) {
				bankAccount = win(betAmount, betOdds, bankAccount);
				cout << endl << "Congratulations, you won! You now have $" << bankAccount << " in your account." << endl;
			} else {
				bankAccount = lose(betAmount, bankAccount);
				cout << endl << "Bad luck, you lost! You now have $" << bankAccount << " in your account." << endl;
			}

			break;
		case 4:
			//Asks for the first number to place a bet on
			cout << endl << "Please choose your first number to place your bet on: ";
			cin >> betNumber;

			//Checks if number is valid (between 1 and 36)
			while (betNumber < 3 || betNumber > 36) {
				cout << endl << "You must choose a valid number between 3 and 36, inclusive!" << endl;
				cout << "Please choose a number to place your bet on: ";
				cin >> betNumber;
			}

			//Asks for amount to bet on that number
			cout << endl << "How much would you like to bet on the numbers " << betNumber << ", " << betNumber - 1 << " and " << betNumber - 2 << "? $";
			cin >> betAmount;

			//Checks if minimum amount is $1 and if the player has enough money in their account
			while (betAmount < 1 || betAmount > bankAccount) {
				cout << endl << "You have $" << bankAccount << " in your bank account: $";
				cin >> betAmount;
			}

			//Seeds random number to the generator
			srand(time(0));

			//Generates a random number
			randomNumber = 1 + (rand() % 36);

			cout << endl << "The ball landed on the number " << randomNumber << ".";

			//Checks if player won or lost their bet
			if (betNumber == randomNumber || betNumber - 1 == randomNumber || betNumber - 2 == randomNumber) {
				bankAccount = win(betAmount, betOdds, bankAccount);
				cout << endl << "Congratulations, you won! You now have $" << bankAccount << " in your account." << endl;
			} else {
				bankAccount = lose(betAmount, bankAccount);
				cout << endl << "Bad luck, you lost! You now have $" << bankAccount << " in your account." << endl;
			}

			break;
		case 5:
			//Asks for the first number to place a bet on
			cout << endl << "Please choose your first number to place your bet on: ";
			cin >> betNumber;

			//Checks if number is valid (between 1 and 36)
			while (betNumber < 3 || betNumber > 33) {
				cout << endl << "You must choose a valid number between 3 and 33, inclusive!" << endl;
				cout << "Please choose a number to place your bet on: ";
				cin >> betNumber;
			}

			//Asks for amount to bet on that number
			cout << endl << "How much would you like to bet on the numbers " << betNumber << ", " << betNumber - 1 << ", " << betNumber - 2 << ", " << betNumber + 1 << ", " << betNumber + 2 << " and " << betNumber + 3 << "? $";
			cin >> betAmount;

			//Checks if minimum amount is $1 and if the player has enough money in their account
			while (betAmount < 1 || betAmount > bankAccount) {
				cout << endl << "You have $" << bankAccount << " in your bank account: $";
				cin >> betAmount;
			}

			//Seeds random number to the generator
			srand(time(0));

			//Generates a random number
			randomNumber = 1 + (rand() % 36);

			cout << endl << "The ball landed on the number " << randomNumber << ".";

			//Checks if player won or lost their bet
			if (betNumber == randomNumber || betNumber - 1 == randomNumber || betNumber - 2 == randomNumber || betNumber + 1 == randomNumber || betNumber + 2 == randomNumber || betNumber + 3 == randomNumber) {
				bankAccount = win(betAmount, betOdds, bankAccount);
				cout << endl << "Congratulations, you won! You now have $" << bankAccount << " in your account." << endl;
			} else {
				bankAccount = lose(betAmount, bankAccount);
				cout << endl << "Bad luck, you lost! You now have $" << bankAccount << " in your account." << endl;
			}

			break;
		case 6:
			//Asks for the range of numbers to place a bet on
			cout << endl << "Please select a range of numbers to place your bet on.";
			cout << endl << "Enter '1' for 1-12, '13' for 13-24, or '25' for 25-36: ";
			cin >> betNumber;

			//Checks if number is valid (between 1 and 36)
			while (betNumber != 1 && betNumber != 13 && betNumber != 25) {
				cout << endl << "Please enter '1' for 1-12, '13' for 13-24, or '25' for 25-36: ";
				cin >> betNumber;
			}

			//Asks for amount to bet on that number
			cout << endl << "How much would you like to bet on the numbers " << betNumber << "-" << betNumber + 11 << "? $";
			cin >> betAmount;

			//Checks if minimum amount is $1 and if the player has enough money in their account
			while (betAmount < 1 || betAmount > bankAccount) {
				cout << endl << "You have $" << bankAccount << " in your bank account: $";
				cin >> betAmount;
			}

			//Seeds random number to the generator
			srand(time(0));

			//Generates a random number
			randomNumber = 1 + (rand() % 36);

			cout << endl << "The ball landed on the number " << randomNumber << ".";

			//Checks if player won or lost their bet
			if (betNumber == randomNumber || betNumber + 1 == randomNumber || betNumber + 2 == randomNumber || betNumber + 3 == randomNumber || betNumber + 4 == randomNumber || betNumber + 5 == randomNumber || betNumber + 6 == randomNumber || betNumber + 7 == randomNumber || betNumber + 8 == randomNumber || betNumber + 9 == randomNumber || betNumber + 11 == randomNumber) {
				bankAccount = win(betAmount, betOdds, bankAccount);
				cout << endl << "Congratulations, you won! You now have $" << bankAccount << " in your account." << endl;
			} else {
				bankAccount = lose(betAmount, bankAccount);
				cout << endl << "Bad luck, you lost! You now have $" << bankAccount << " in your account." << endl;
			}

			break;
		case 7:
			//Asks for a type of number to place a bet on
			cout << endl << "Please select a type of number to place your bet on.";
			cout << endl << "Enter '1' for odd, or '2' for even: ";
			cin >> betNumber;

			//Checks if number is valid (between 1 and 36)
			while (betNumber != 1 && betNumber != 2) {
				cout << endl << "Please enter '1' for odd, or '2' for even: ";
				cin >> betNumber;
			}

			//Asks for amount to bet
			if (betNumber == 1) {
				cout << endl << "How much would you like to bet on the odd numbers? $";
				cin >> betAmount;
			} else if (betNumber == 2) {
				cout << endl << "How much would you like to bet on the even numbers? $";
				cin >> betAmount;
			}

			//Checks if minimum amount is $1 and if the player has enough money in their account
			while (betAmount < 1 || betAmount > bankAccount) {
				cout << endl << "You have $" << bankAccount << " in your bank account: $";
				cin >> betAmount;
			}

			//Seeds random number to the generator
			srand(time(0));

			//Generates a random number
			randomNumber = 1 + (rand() % 36);

			cout << endl << "The ball landed on the number " << randomNumber << ".";

			//Checks if player won or lost their bet
			if (betNumber == 1 && randomNumber % 2 != 0 || betNumber == 2 && randomNumber % 2 == 0) {
				bankAccount = win(betAmount, betOdds, bankAccount);
				cout << endl << "Congratulations, you won! You now have $" << bankAccount << " in your account." << endl;
			} else {
				bankAccount = lose(betAmount, bankAccount);
				cout << endl << "Bad luck, you lost! You now have $" << bankAccount << " in your account." << endl;
			}

			break;
		case 8:
			//Asks for a colour to place a bet on
			cout << endl << "Please select a type of number to place your bet on.";
			cout << endl << "Enter '1' for red, or '2' for black: ";
			cin >> betNumber;

			//Checks if number is valid (between 1 and 36)
			while (betNumber != 1 && betNumber != 2) {
				cout << endl << "Please enter '1' for red, or '2' for black: ";
				cin >> betNumber;
			}

			//Asks for amount to bet
			if (betNumber == 1) {
				cout << endl << "How much would you like to bet on the red numbers? $";
				cin >> betAmount;
			} else if (betNumber == 2) {
				cout << endl << "How much would you like to bet on the black numbers? $";
				cin >> betAmount;
			}

			//Checks if minimum amount is $1 and if the player has enough money in their account
			while (betAmount < 1 || betAmount > bankAccount) {
				cout << endl << "You have $" << bankAccount << " in your bank account: $";
				cin >> betAmount;
			}

			//Seeds random number to the generator
			srand(time(0));

			//Generates a random number
			randomNumber = 1 + (rand() % 36);

			cout << endl << "The ball landed on the number " << randomNumber << ".";

			//Checks if player won or lost their bet
			for (int x = 0; x < 18; x++) {
				colourWin = false;

				if (betNumber == 1 && randomNumber == red[x] || betNumber == 2 && randomNumber == black[x]) {
					bankAccount = win(betAmount, betOdds, bankAccount);
					cout << endl << "Congratulations, you won! You now have $" << bankAccount << " in your account." << endl;
					colourWin = true;
					x = 18;
				}
			}

			if (colourWin == false) {
				bankAccount = lose(betAmount, bankAccount);
				cout << endl << "Bad luck, you lost! You now have $" << bankAccount << " in your account." << endl;
			}

			break;
		case 9:
			//Asks for a colour to place a bet on
			cout << endl << "Please select a column to place your bet on.";
			cout << endl << "Enter '1' for the 1st column, '2' for 2nd column, or '3' for the 3rd column: ";
			cin >> betNumber;

			//Checks if number is valid (between 1 and 36)
			while (betNumber != 1 && betNumber != 2 && betNumber != 3) {
				cout << endl << "Please enter '1' for the first column, '2' for second column, or '3' for the third column: ";
				cin >> betNumber;
			}

			//Asks for amount to bet
			cout << endl << "How much would you like to bet on the numbers in column " << betNumber << "? $";
			cin >> betAmount;

			//Checks if minimum amount is $1 and if the player has enough money in their account
			while (betAmount < 1 || betAmount > bankAccount) {
				cout << endl << "You have $" << bankAccount << " in your bank account: $";
				cin >> betAmount;
			}

			//Seeds random number to the generator
			srand(time(0));

			//Generates a random number
			randomNumber = 1 + (rand() % 36);

			cout << endl << "The ball landed on the number " << randomNumber << ".";

			//Checks if player won or lost their bet
			for (int y = 0; y < 12; y++) {
				columnWin = false;

				if (betNumber == 1 && randomNumber == firstColumn[y] || betNumber == 2 && randomNumber == secondColumn[y] || betNumber == 3 && randomNumber == thirdColumn[y]) {
					bankAccount = win(betAmount, betOdds, bankAccount);
					cout << endl << "Congratulations, you won! You now have $" << bankAccount << " in your account." << endl;
					columnWin = true;
					y = 12;
				}
			}

			if (columnWin == false) {
				bankAccount = lose(betAmount, bankAccount);
				cout << endl << "Bad luck, you lost! You now have $" << bankAccount << " in your account." << endl;
			}

			break;
		case 10:
			//Asks for amount to bet
			cout << endl << "How much would you like to bet on the numbers between 1 and 18, inclusive? $";
			cin >> betAmount;

			//Checks if minimum amount is $1 and if the player has enough money in their account
			while (betAmount < 1 || betAmount > bankAccount) {
				cout << endl << "You have $" << bankAccount << " in your bank account: $";
				cin >> betAmount;
			}

			//Seeds random number to the generator
			srand(time(0));

			//Generates a random number
			randomNumber = 1 + (rand() % 36);

			cout << endl << "The ball landed on the number " << randomNumber << ".";

			//Checks if player won or lost their bet
			if (randomNumber >= 1 && randomNumber <= 18) {
				bankAccount = win(betAmount, betOdds, bankAccount);
				cout << endl << "Congratulations, you won! You now have $" << bankAccount << " in your account." << endl;
			} else {
				bankAccount = lose(betAmount, bankAccount);
				cout << endl << "Bad luck, you lost! You now have $" << bankAccount << " in your account." << endl;
			}

			break;
		case 11:
			//Asks for amount to bet
			cout << endl << "How much would you like to bet on the numbers between 19 and 36, inclusive? $";
			cin >> betAmount;

			//Checks if minimum amount is $1 and if the player has enough money in their account
			while (betAmount < 1 || betAmount > bankAccount) {
				cout << endl << "You have $" << bankAccount << " in your bank account: $";
				cin >> betAmount;
			}

			//Seeds random number to the generator
			srand(time(0));

			//Generates a random number
			randomNumber = 1 + (rand() % 36);

			cout << endl << "The ball landed on the number " << randomNumber << ".";

			//Checks if player won or lost their bet
			if (randomNumber >= 19 && randomNumber <= 36) {
				bankAccount = win(betAmount, betOdds, bankAccount);
				cout << endl << "Congratulations, you won! You now have $" << bankAccount << " in your account." << endl;
			} else {
				bankAccount = lose(betAmount, bankAccount);
				cout << endl << "Bad luck, you lost! You now have $" << bankAccount << " in your account." << endl;
			}

			break;
		}

		//Checks if user has any money left and notifies them if they have less than $50 remaining
		if (bankAccount == 0) {
			playAgain = 0;
		} else if (bankAccount < 50) {
			cout << endl << "Your funds are quite low." << endl;
			cout << endl << "Would you like to play again? Enter 1 to play or 0 to quit: ";
			cin >> playAgain;
		} else {
			cout << endl << "Would you like to play again? Enter 1 to play or 0 to quit: ";
			cin >> playAgain;
		}

		//Checks if user entered 1 or 0 - if not, they are asked to enter a valid number
		while (playAgain != 0 && playAgain != 1) {
			cout << endl << "Please enter 1 to play or 0 to quit: ";
			cin >> playAgain;
		}
	}

	if (bankAccount > 500) {
		cout << endl << "You made $" << bankAccount - 500 << "in total!" << endl;
	} else if (bankAccount < 500) {
		cout << endl << "You lost $" << 500 - bankAccount << " in total!" << endl;
	} else {
		cout << endl << "You still have $500 in your account!" << endl;
	}

	cout << endl << "Hope to see you soon!" << endl << endl;
	system("pause");
	return 0;
}


Create a new paste based on this one


Comments: