-
Notifications
You must be signed in to change notification settings - Fork 0
/
BaseballBattingStatsSim.cpp
283 lines (268 loc) · 6.42 KB
/
BaseballBattingStatsSim.cpp
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
// Source(s) of logic assistance:
// Gaddis, T. (2018). Starting out with C++: From control structures through objects. Pearson.
//
// https://docs.microsoft.com/en-us/troubleshoot/developer/visualstudio/cpp/libraries/stl-sqrt-pow-functions
// https://docs.microsoft.com/en-us/cpp/standard-library/iomanip-functions?view=msvc-170
#include <iostream> // To use cin/cout
#include <iomanip> // To access setw for output width
#include <ctime> // Access random number generator
using namespace std;
// Constant Variable Initialization
const string TITLE = "Baseball Batting Stats Simulator";
const string AUTHOR_LINE = "By Forrest Moulin";
// Career stats based on 1000 at bats
const int OUTS_INT = 580;
const int WALKS_INT = 97;
const int SINGLES_INT = 220;
const int DOUBLES_INT = 61;
const int TRIPLES_INT = 25;
const int HOMERUNS_INT = 17;
// Use 1000 multiplier to facilitate calculations
const double ATBATS = 1000.0 * 1000;
const double OUTS = ATBATS * 1.0 / OUTS_INT;
const double WALKS = ATBATS * 1.0 / WALKS_INT;
const double SINGLES = ATBATS * 1.0 / SINGLES_INT;
const double DOUBLES = ATBATS * 1.0 / DOUBLES_INT;
const double TRIPLES = ATBATS * 1.0 / TRIPLES_INT;
const double HOMERUNS = ATBATS * 1.0 / HOMERUNS_INT;
const double CAREER_AVG = 0.358;
// Resulting integers to be used in rand function
const int OUTS_INT2 = OUTS;
const int WALKS_INT2 = WALKS;
const int SINGLES_INT2 = SINGLES;
const int DOUBLES_INT2 = DOUBLES;
const int TRIPLES_INT2 = TRIPLES;
const int HOMERUNS_INT2 = HOMERUNS;
int main()
{
// Seed random number generator
srand(time(NULL));
// Dynamic Variable Initialization
int outsInt, walksInt, singlesInt, doublesInt,
triplesInt, homeRunsInt, batAvg;
int outCount = 0, walkCount = 0, singleCount = 0,
doubleCount = 0,tripleCount = 0, homeRunCount = 0,
hitCount = 0, atBatCount = 0, simCount = 0;
char continueChar = NULL;
cout << fixed << setprecision(3) << TITLE << endl
<< AUTHOR_LINE << endl << endl;
while (continueChar != 'n'
|| continueChar != toupper('n'))
{
simCount++; // Track # of simulations
cout << "Simulation # " << simCount << endl;
cout << "Simulating 1000 at-bats..." << endl << endl;
while(atBatCount < 1000)
{
// Generate random values based on statistical averages
outsInt = rand() % OUTS_INT2 + 1;
singlesInt = rand() % SINGLES_INT2 + 1;
doublesInt = rand() % DOUBLES_INT2 + 1;
triplesInt = rand() % TRIPLES_INT2 + 1;
homeRunsInt = rand() % HOMERUNS_INT2 + 1;
walksInt = rand() % WALKS_INT2 + 1;
// Since multiplier of 1000 used, check whether
// random value is from 1 to 1000
// Break in case 1000 is reached to avoid
// going over limit during if bodies
if (outsInt <= 1000)
{
outCount++;
atBatCount++;
if (atBatCount == 1000)
{
break;
}
}
if (singlesInt <= 1000)
{
singleCount++;
atBatCount++;
if (atBatCount == 1000)
{
break;
}
}
if (doublesInt <= 1000)
{
doubleCount++;
atBatCount++;
if (atBatCount == 1000)
{
break;
}
}
if (triplesInt <= 1000)
{
tripleCount++;
atBatCount++;
if (atBatCount == 1000)
{
break;
}
}
if (homeRunsInt <= 1000)
{
homeRunCount++;
atBatCount++;
if (atBatCount == 1000)
{
break;
}
}
if (walksInt <= 1000)
{
walkCount++;
atBatCount++;
if (atBatCount == 1000)
{
break;
}
}
}
// Calculate the batting average in decimal form
hitCount = singleCount + doubleCount + tripleCount + homeRunCount;
batAvg = 1.0 * hitCount
/ (1000 - walkCount);
// Print results in table format
cout << left << setw(15) << "Outs:" << outCount << endl
<< left << setw(15) << "Walks:" << walkCount << endl
<< left << setw(15) << "Singles: " << singleCount << endl
<< left << setw(15) << "Doubles:" << doubleCount << endl
<< left << setw(15) << "Triples:" << tripleCount << endl
<< left << setw(15) << "Home Runs:" << homeRunCount << endl << endl
<< "Calculated batting average: " << batAvg
<< endl << endl
<< "Would you like to run another simulation?"
<< endl << "(y for yes, n for no)" << endl << endl;
// Get char input (Y/N)
cin >> continueChar;
if (continueChar == 'n'
|| continueChar == toupper('n'))
{
cout << endl << "Exiting the simulator..."
<< endl << "Until next time!" << endl;
break;
}
else if (continueChar == 'y'
|| continueChar == toupper('y'))
{
// Reset values for next simulation
atBatCount = 0;
outCount = 0;
singleCount = 0;
doubleCount = 0;
tripleCount = 0;
homeRunCount = 0;
walkCount = 0;
cout << endl;
continue;
}
else
{
do
{
cout << "Invalid entry."
<< "Would you like to run another simulation?"
<< endl << "(y for yes, n for no)" << endl << endl;
cin >> continueChar;
} while (continueChar != 'n'
|| continueChar != toupper('n')
|| continueChar != 'y'
|| continueChar != toupper('y'));
}
}
}
/*
* CONSOLE OUTPUT
* Baseball Batting Stats Simulator
* By Forrest Moulin
*
* Simulation # 1
* Simulating 1000 at-bats...
*
* Outs: 575
* Walks: 113
* Singles: 212
* Doubles: 60
* Triples: 20
* Home Runs: 20
*
* Calculated batting average: 0.352
*
* Would you like to run another simulation?
* (y for yes, n for no)
*
* y
*
* Simulation # 2
* Simulating 1000 at-bats...
*
* Outs: 536
* Walks: 126
* Singles: 220
* Doubles: 55
* Triples: 31
* Home Runs: 32
*
* Calculated batting average: 0.387
*
* Would you like to run another simulation?
* (y for yes, n for no)
*
* y
*
* Simulation # 3
* Simulating 1000 at-bats...
*
* Outs: 544
* Walks: 88
* Singles: 251
* Doubles: 61
* Triples: 26
* Home Runs: 30
*
* Calculated batting average: 0.404
*
* Would you like to run another simulation?
* (y for yes, n for no)
*
* y
*
* Simulation # 4
* Simulating 1000 at-bats...
*
* Outs: 557
* Walks: 115
* Singles: 220
* Doubles: 50
* Triples: 33
* Home Runs: 25
*
* Calculated batting average: 0.371
*
* Would you like to run another simulation?
* (y for yes, n for no)
*
* y
*
* Simulation # 5
* Simulating 1000 at-bats...
*
* Outs: 548
* Walks: 119
* Singles: 208
* Doubles: 62
* Triples: 28
* Home Runs: 35
*
* Calculated batting average: 0.378
*
* Would you like to run another simulation?
* (y for yes, n for no)
*
* n
*
* Exiting the simulator...
* Until next time!
*/