[ create a new paste ] login | about

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

C++, pasted on Nov 13:
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
// 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 betAmount, int betOdds, int bankAccount) {
	int newBank = 0;
	int oldBank = bankAccount;
	newBank = oldBank + (betAmount * betOdds);
	cout << endl << "Congratulations, you won $" << betAmount * (betOdds + 1) << "! You now have $" << newBank << " in your account." << endl;
	return newBank;
}

//Calculates users bank account if they lose
int lose (int betAmount, int bankAccount) {
	int newBank = 0;
	int oldBank = bankAccount;
	newBank = oldBank - betAmount;
	cout << endl << "Bad luck, you lost! You now have $" << newBank << " in your account." << endl;
	return newBank;
}

//Checks if minimum amount is $1 and if the player has enough money in their account
int getBetAmount (int bankAccount) {
	int betAmount;
	cin >> betAmount;

	while (betAmount < 1 || betAmount > bankAccount) {
		cout << endl << "You have $" << bankAccount << " in your bank account: $";
		cin >> betAmount;
	}

	cout << endl;
	return betAmount;
}

int _tmain(int argc, _TCHAR* argv[]) {
	const int startingBankAccount = 500;
	int bankAccount = 500, playAgain = 1, betNumber = 0, betAmount = 0, betOdds = 35, randomNumber = 0, betChoice = 0;
	string betName[] = {"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[] = {35, 17, 8, 11, 5, 2, 1, 1, 2, 1, 1};
	int red[] = {1, 3, 5, 7, 9, 12, 14, 16, 18, 19, 21, 23, 25, 27, 30, 32, 34, 36};
	int black[] = {2, 4, 6, 8, 10, 11, 13, 15, 17, 20, 22, 24, 26, 28, 29, 31, 33, 35};
	int firstColumn[] = {1, 4, 7, 10, 13, 16, 19, 22, 25, 28, 31, 34};
	int secondColumn[] = {2, 5, 8, 11, 14, 17, 20, 23, 26, 29, 32, 35};
	int thirdColumn[] = {3, 6, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36};
	int chosenNumbers[50][50];
	int winningNumbers[50];
	int counter = 0, winCounter = 0;
	bool correctGuess = false, columnWin = false, colourWin = false;

	cout << endl << "       $$$$$";
	cout << endl << "       $:::$";
	cout << endl << "   $$$$$:::$$$$$";
	cout << endl << " $$:::::::::::::$";
	cout << endl << "$:::::$$$$$$$::::$";
	cout << endl << "$::::$       $$$$$";
	cout << endl << "$::::$";
	cout << endl << "$::::$";
	cout << endl << "$:::::$$$$$$$$$";
	cout << endl << " $$::::::::::::$$";
	cout << endl << "   $$$$$$$$$:::::$";
	cout << endl << "            $::::$";
	cout << endl << "            $::::$";
	cout << endl << "$$$$$       $::::$";
	cout << endl << "$::::$$$$$$$:::::$";
	cout << endl << "$:::::::::::::$$";
	cout << endl << " $$$$$:::$$$$$";
	cout << endl << "      $:::$";
	cout << endl << "      $$$$$";
	cout << endl;

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

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

	//Checks if user wants to play
	while (playAgain == 1) {
		//Resets variable
		correctGuess = false;

		//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 bet number is valid
			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 << "? $";
			betAmount = getBetAmount(bankAccount);
			system("pause");

			//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);
				correctGuess = true;
			} else {
				bankAccount = lose(betAmount, bankAccount);
			}

			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 bet number is valid
			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 << "? $";
			betAmount = getBetAmount(bankAccount);
			system("pause");

			//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);
				correctGuess = true;
			} else {
				bankAccount = lose(betAmount, bankAccount);
			}

			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 bet number is valid
			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 << "? $";
			betAmount = getBetAmount(bankAccount);
			system("pause");

			//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);
				correctGuess = true;
			} else {
				bankAccount = lose(betAmount, bankAccount);
			}

			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 bet number is valid
			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 << "? $";
			betAmount = getBetAmount(bankAccount);
			system("pause");

			//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);
				correctGuess = true;
			} else {
				bankAccount = lose(betAmount, bankAccount);
			}

			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 bet number is valid
			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 << "? $";
			betAmount = getBetAmount(bankAccount);
			system("pause");

			//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);
				correctGuess = true;
			} else {
				bankAccount = lose(betAmount, bankAccount);
			}

			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 bet number is valid
			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 << "? $";
			betAmount = getBetAmount(bankAccount);
			system("pause");

			//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);
				correctGuess = true;
			} else {
				bankAccount = lose(betAmount, bankAccount);
			}

			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 bet number is valid
			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? $";
			} else if (betNumber == 2) {
				cout << endl << "How much would you like to bet on the even numbers? $";
			}

			betAmount = getBetAmount(bankAccount);
			system("pause");

			//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);
				correctGuess = true;
			} else {
				bankAccount = lose(betAmount, bankAccount);
			}

			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 bet number is valid
			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? $";
			} else if (betNumber == 2) {
				cout << endl << "How much would you like to bet on the black numbers? $";
			}

			betAmount = getBetAmount(bankAccount);
			system("pause");

			//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);
					correctGuess = true;
					colourWin = true;
					x = 18;
				}
			}

			if (colourWin == false) {
				bankAccount = lose(betAmount, bankAccount);
			}

			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 bet number is valid
			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 << "? $";
			betAmount = getBetAmount(bankAccount);
			system("pause");

			//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);
					correctGuess = true;
					columnWin = true;
					y = 12;
				}
			}

			if (columnWin == false) {
				bankAccount = lose(betAmount, bankAccount);
			}

			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? $";
			betAmount = getBetAmount(bankAccount);
			system("pause");

			//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);
				correctGuess = true;
			} else {
				bankAccount = lose(betAmount, bankAccount);
			}

			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? $";
			betAmount = getBetAmount(bankAccount);
			system("pause");

			//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);
				correctGuess = true;
			} else {
				bankAccount = lose(betAmount, bankAccount);
			}

			break;
		}

		//Stores bet numbers in two-dimensional array
		chosenNumbers[0][counter] = betNumber;

		if (correctGuess == true) {
			chosenNumbers[1][counter] = 1;
		} else {
			chosenNumbers[1][counter] = 0;
		}

		winningNumbers[winCounter] = randomNumber;
		winCounter++;
		counter++;

		//Checks if user has any money left and notifies them if they have less than $50 remaining
		if (bankAccount == 0) {
			playAgain = 0;
			break;
		} 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 > startingBankAccount) {
		cout << endl << "You made $" << bankAccount - startingBankAccount << " in total!" << endl;
	} else if (bankAccount < startingBankAccount) {
		cout << endl << "You lost $" << startingBankAccount - bankAccount << " in total!" << endl;
	} else {
		cout << endl << "You still have $" << startingBankAccount << " in your account!" << endl;
	}

	cout << endl << "You chose the number(s):" << endl;

	//Displays the numbers the player chose
	for (int k = 0; k < counter; k++) {
		cout << "- " << chosenNumbers[0][k] << endl;
	}

	cout << endl << "Here are the winning number(s):" << endl;

	//Displays the winning numbers
	for (int l = 0; l < winCounter; l++) {
		cout << "- " << winningNumbers[l] << endl;
	}

	cout << endl << "Hope to see you soon!" << endl;

	cout << endl << ".-------------------------------------------.";
	cout << endl << "|                                           |";
	cout << endl << "|    $                                 $    |";
	cout << endl << "|   $$$    FFFF  I   V   V   EEEEE    $$$   |";
	cout << endl << "|  $       F     I   V   V   E       $      |";
	cout << endl << "|   $$$    FFF   I   V   V   EEE      $$$   |";
	cout << endl << "|      $   F     I    V V    E           $  |";
	cout << endl << "|   $$$    F     I     V     EEEEE    $$$   |";
	cout << endl << "|    $                                 $    |";
	cout << endl << "|___________________________________________|" << endl;

	system("pause");
	return 0;
}


Output:
1
2
3
Line 19: error: stdafx.h: No such file or directory
Line 40: error: '_TCHAR' has not been declared
compilation terminated due to -Wfatal-errors.


Create a new paste based on this one


Comments: