-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlimuel.c
127 lines (122 loc) · 3.49 KB
/
limuel.c
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
#include <stdio.h>
#include <conio.h>
#include <stdlib.h>
#include <time.h>
int main()
{
int bet, deposit, d1, d2, total1, total2, again;
int balance = 0;
char choice;
printf("===========================\n");
printf("| D I C E |\n");
printf("===========================\n");
printf(" [P]Play [E]Exit \n");
scanf("%s", &choice);
system("cls");
switch (choice)
{
case 'P': case 'p':
printf("===========================\n");
printf("Balance: %d\n", balance);
printf("How much do you want to deposit: ");
scanf("%d",&deposit);
balance += deposit;
system("cls");
bet:
printf("===========================\n");
printf("Balance: %d\n", balance);
printf("===========================\n");
printf("How much will you bet: ");
scanf("%d", &bet);
if(bet > balance)
{printf("Not Enough Balance.\n");
goto bet;}
else
{balance = balance - bet;}
system("cls");
printf("===========================\n");
printf("Balance: %d\n", balance);
printf("Bet: %d\n",bet);
printf("===========================\n");
printf("Bet Accepted\n\nPress Enter to Continue...");
getch();
system("cls");
printf("Roll 1:.\n");
printf("===========================\n");
printf("Your balance now is: %d\n", balance);
printf("Bet: %d\n",bet);
printf("===========================\n");
printf("Press Enter to throw Dice.\n\n");
srand(time(NULL));
d1 = rand()%6 + 1;
d2 = rand()%6 + 1;
getch();
printf("Dice 1: %d\n",d1);
printf("Dice 2: %d\n",d2);
total1 = d1 + d2;
printf("The total of both dice is %d\n", total1);
if(total1 == 7){
printf("You Won!!!\n");
bet = bet*2;
balance = balance + bet;
printf("===========================\n");
printf("Your balance now is: %d\n", balance);
printf("===========================\n");
}
else if((total1 == 11) || (total1 == 2)){
printf("You Lose!\n");
balance = balance - bet;
printf("===========================\n");
printf("Your balance now is: %d\n", balance);
printf("===========================\n");
}
else{
roll:
printf("\nNo Luck\n\nRoll Again\n");
printf("Press Enter to throw Dice.\n\n");
getch();
system("cls");
srand(time(NULL));
d1 = rand()%6 + 1;
d2 = rand()%6 + 1;
printf("Roll 2:.\n");
printf("===========================\n");
printf("Your balance now is: %d\n", balance);
printf("Bet: %d\n",bet);
printf("===========================\n");
printf("Roll 1: %d\n\n", total1);
printf("Dice 1: %d\n",d1);
printf("Dice 2: %d\n",d2);
total2 = d1 + d2;
printf("The total of both dice is %d\n", total2);
if(total2 == total1){
printf("You Won!!!\n");
bet = bet*2;
balance = balance + bet;
printf("===========================\n");
printf("Your balance now is: %d\n", balance);
printf("===========================\n");
}
else if(total2 == 7){
printf("You Lose!\n");
balance = balance - bet;
printf("===========================\n");
printf("Your balance now is: %d\n", balance);
printf("===========================\n");
}
else{goto roll;}
}
printf("===========================\n");
printf(" Play Again? \n");
printf(" [1]Yes [2]No \n");
printf("===========================\n");
scanf("%d",&again);
system("cls");
if(again == 1){goto bet;}
else{printf("Thak you for Playing!");}
break;
default:
printf("Thak you for Playing!");
return 0;
}
}