-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcardgame.cpp
More file actions
245 lines (196 loc) · 4.98 KB
/
cardgame.cpp
File metadata and controls
245 lines (196 loc) · 4.98 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
/*
This is a program that reads 5 cards from the user, analyzes the cards and prints out the category of hand from these cards.
Poker hands are categorized according to the following labels: Straight flush,
four of a kind, full house, straight, flush, three of a kind, two pairs, pair, high card.
This program will ignore card suits, and face cards.
The values that the user inputs will be integer values from 2 to 9.
The program starts by collecting 5 integer values from the user and placing the integers into an array that has 5 elements.
*/
#include <iostream>
#include <iomanip>
#include <cstdlib>
using namespace std;
const int ARRAY_SIZE = 5;
int cardCounter(const int hand[], int checkNumber);
int pairCounter(const int hand[]);
int handMax(const int hand[]);
int handMin(const int hand[]);
bool containsPair(const int hand[]);
bool containsTwoPair(const int hand[]);
bool containsThreeOfaKind(const int hand[]);
bool containsStraight(const int hand[]);
bool containsFullHouse(const int hand[]);
bool containsFourOfaKind(const int hand[]);
int main()
{
int count = 0;
int hand[ARRAY_SIZE];
cout << "Enter five numeric cards, no face cards. Use 2 - 9." << endl;
while (count < ARRAY_SIZE) {
cout << "Card " << count + 1 << ": ";
cin >> hand[count];
count++;
}
if (containsFourOfaKind(hand)) {
cout << "Four of a kind!" << endl;
}
else if (containsFullHouse(hand)) {
cout << "Full house!" << endl;
}
else if (containsStraight(hand)) {
cout << "Straight!" << endl;
}
else if (containsThreeOfaKind(hand)) {
cout << "Three of a kind!" << endl;
}
else if (containsTwoPair(hand)) {
cout << "Two Pair!" << endl;
}
else if (containsPair(hand)) {
cout << "Pair!" << endl;
}
else {
cout << "High Card!" << endl;
}
return 0;
}
/*
Helper function that creates another array to help keep track of the number of occurrences (frequency) of all possible card values 2-9.
*/
int cardCounter(const int hand[], int checkNumber)
{
// Length of cardCounts can be at max 8 => 9 - 2 + 1
// Setting an array to {0} initializes it to all zeroes
int cardCounts[8] = {0};
for (int i = 0; i < 5; i++) {
cardCounts[hand[i] - 2]++;
}
return cardCounts[checkNumber - 2];
}
/*
Helper function that counts the number of pairs in the card hand.
*/
int pairCounter(const int hand[])
{
int count = 0;
for (int p = 0; p < 5; p++) {
if ((cardCounter(hand, hand[p])) == 2) {
count++;
}
}
return count/2;
}
/*
Helper function that returns the value of the highest card in the hand.
*/
int handMax(const int hand[])
{
int max = hand[0];
for (int i = 0; i < ARRAY_SIZE; i++) {
max = (hand[i] > max) ? hand[i] : max;
}
return max;
}
/*
Helper function that returns the value of the lowest card in the hand.
*/
int handMin(const int hand[])
{
int min = hand[0];
for (int i = 0; i < ARRAY_SIZE; i++) {
min = (hand[i] < min) ? hand[i] : min;
}
return min;
}
/*
Checks to see if the hand contains a pair.
*/
bool containsPair(const int hand[])
{
if (pairCounter(hand) == 1) {
return true;
}
return false;
}
/*
Checks to see if the hand contains two pairs.
*/
bool containsTwoPair(const int hand[])
{
if (pairCounter(hand) == 2) {
return true;
}
return false;
}
/*
Checks to see if the hand contains 3 cards that have the same value.
*/
bool containsThreeOfaKind(const int hand[])
{
for (int p = 0; p < 5; p++) {
if ((cardCounter(hand, hand[p])) == 3) {
return true;
}
}
return false;
}
/*
Checks to see if the entire hand consists of consecutive values.
*/
bool containsStraight(const int hand[])
{
for (int p = 0; p < 5; p++) {
if (((cardCounter(hand, hand[p])) != 1) || (handMax(hand) - handMin(hand) != 4)) {
return false;
}
}
return true;
}
/*
Checks to see if the hand contains 3 of the same value and the 2 remaining values are a pair as well.
*/
bool containsFullHouse(const int hand[])
{
if (containsThreeOfaKind(hand) && containsPair(hand)) {
return true;
}
return false;
}
/*
Checks to see if the hand contains four cards that are the same value.
*/
bool containsFourOfaKind(const int hand[])
{
for (int p = 0; p < 5; p++) {
if ((cardCounter(hand, hand[p])) == 4) {
return true;
}
}
return false;
}
/*
output of program (not continuously playing, each game separated by a divider):
Enter five numeric cards, no face cards. Use 2 - 9.
Card 1: 8
Card 2: 7
Card 3: 8
Card 4: 2
Card 5: 7
Two Pair!
________________________
Enter five numeric cards, no face cards. Use 2 - 9.
Card 1: 8
Card 2: 7
Card 3: 4
Card 4: 6
Card 5: 5
Straight!
________________________
Enter five numeric cards, no face cards. Use 2 - 9.
Card 1: 9
Card 2: 2
Card 3: 3
Card 4: 4
Card 5: 5
High Card!
*/