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
|
Lab6 exercises Benjamin Schroeder
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//11a
//10.10 Learn by Doing Exercises
//pp 282 - 283
//10 pts #1
#include "Lab6_Header.h"
int main()
{
int Mem_Dues[ARRAY_SIZE][2]{};
string Club_Pres[ARRAY_SIZE][2]{};
readData(Mem_Dues, Club_Pres);
printData(Mem_Dues, Club_Pres);
}
// from Lab6ExerciseFunctions.cpp
void readData(int intData[ARRAY_SIZE][2], string stringData[ARRAY_SIZE][2])
{
int again = 0, i = 0;
cout << "Another Club's Data? (1 for YES, 0 to exit) ";
cin >> again;
while (again && i < ARRAY_SIZE)
{
cout << "Enter the club name: ";
getline(cin >> ws, stringData[i][0]);
cout << "Enter number of members:";
cin >> intData[i][0];
cout << "Enter the Club president's name: ";
getline(cin >> ws, stringData[i][1]);
intData[i][1] = intData[i][0] * 75;
cout << endl;
cout << "Another Club's Data? (1 for YES, 0 to exit)";
cin >> again;
i++;
}
cout << endl;
}
void printData(int intData[ARRAY_SIZE][2], string stringData[ARRAY_SIZE][2])
{
cout << setw(20) << "\t\t\tClub" << setw(10) << "\t\tmembers" << setw(20) << "\tPresident" << setw(10) << "\t\tDues $$\n\n";
for (int i = 0; i < ARRAY_SIZE; i++)
{
cout << "Record " << i + 1 << " is: \t";
for (int j = 0; j < 2; j++)
{
cout << setw(30) << stringData[i][j] << setw(10) << intData[i][j];
}
cout << endl;
}
}
/////// RUN FOR 10.10 Learn By Doing /////////////////////////////////////////////////////////////
Another Club's Data? (1 for YES, 0 to exit) 1
Enter the club name: Computer Systems Society
Enter number of members:49
Enter the Club president's name: Kim Cares
Another Club's Data? (1 for YES, 0 to exit)1
Enter the club name: Society of Women Engineers
Enter number of members:51
Enter the Club president's name: Jeanie Queen
Another Club's Data? (1 for YES, 0 to exit)1
Enter the club name: Sigma Tau Gamma
Enter number of members:241
Enter the Club president's name: Storm Drain
Another Club's Data? (1 for YES, 0 to exit)1
Enter the club name: Trekkies
Enter number of members:230
Enter the Club president's name: C. Kirk
Another Club's Data? (1 for YES, 0 to exit)1
Enter the club name: Home Brewers
Enter number of members:15
Enter the Club president's name: Ross Coe
Another Club's Data? (1 for YES, 0 to exit)1
Enter the club name: High Altitude Ballooning
Enter number of members:19
Enter the Club president's name: Justin Time
Another Club's Data? (1 for YES, 0 to exit)1
Enter the club name: Rugby
Enter number of members:25
Enter the Club president's name: Ryan Johns
Another Club's Data? (1 for YES, 0 to exit)1
Enter the club name: IEEE
Enter number of members:36
Enter the Club president's name: Marc Bansmere
Another Club's Data? (1 for YES, 0 to exit)1
Enter the club name: International Club
Enter number of members:102
Enter the Club president's name: Kong Mbonkum
Another Club's Data? (1 for YES, 0 to exit)1
Enter the club name: Dance Club
Enter number of members:64
Enter the Club president's name: Will Shaver
Another Club's Data? (1 for YES, 0 to exit)0
Club members President Dues $$
Record 1 is: Computer Systems Society 49 Kim Cares 3675
Record 2 is: Society of Women Engineers 51 Jeanie Queen 3825
Record 3 is: Sigma Tau Gamma 241 Storm Drain 18075
Record 4 is: Trekkies 230 C. Kirk 17250
Record 5 is: Home Brewers 15 Ross Coe 1125
Record 6 is: High Altitude Ballooning 19 Justin Time 1425
Record 7 is: Rugby 25 Ryan Johns 1875
Record 8 is: IEEE 36 Marc Bansmere 2700
Record 9 is: International Club 102 Kong Mbonkum 7650
Record 10 is: Dance Club 64 Will Shaver 4800
C:\Users\Lenovo\source\repos\cst116-lab6-BensProgramma\x64\Debug\CST116F2021-Lab6.exe (process 18392) exited with code 0.
To automatically close the console when debugging stops, enable Tools->Options->Debugging->Automatically close the console when debugging stops.
Press any key to close this window . . .
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//********************************************************************
10.14 Learn By Doing (Debugging Code) p282-283
#include <iostream>
#include <iomanip>
using std::cin;
using std::cout;
using std::endl;
using std::setw;
void GetAndDisplayWelcomeInfo();
void FunctionOne(int varX[], int varY[]);
void FunctionTwo( int varX[], int varY[], int varZ[]);
void PrintFunction( int varX[], int varY[], int varZ[]);
const int SIZE = 10;
int main()
{
int varX[SIZE];
int varY[SIZE];
int varZ[SIZE]; // Notice how we used the const here!
varZ[0] = -99;
varX[1] = 99;
// Breakpoint 1
// Put breakpoint on the following line
GetAndDisplayWelcomeInfo();
FunctionOne(varX, varY);
// Breakpoint 3
// Put breakpoint on the following line
FunctionTwo(varX, varY, varZ);
PrintFunction(varX, varY, varZ);
return 0;
}
void GetAndDisplayWelcomeInfo()
{
char name[2][20]; // First name in row 0, last name in row 1
cout << "Please enter your first name: ";
cin >> name[0];
cout << "\nPlease enter your last name: ";
cin >> name[1];
// Breakpoint 2
// Put breakpoint on the following line
cout << "\n\n\tWelcome " << name[0] << " " << name[1]
<< "!\n\t Hope all is well \n\n";
}
void FunctionOne(int varX[], int varY[])
{
for (int x = 0; x < SIZE; x++) // NOTICE '<' NOT <=
// Breakpoint 4
// Put breakpoint on the following line
varX[x] = x;
for (int x = 0; x < SIZE; x++)
varY[x] = x + 100;
}
void FunctionTwo( int varX[], int varY[], int varZ[])
{
for (int x = 0; x < SIZE; x++) // Notice the const SIZE here
varZ[x] = varX[x] + varY[x];
}
void PrintFunction( int varX[20], int varY[20], int varZ[20])
{
int x;
cout << " \t x \t y \t z\n\n";
for (x = 0; x < SIZE; x++)
cout << "\t" << setw(3) << varX[x]
<< "\t " << varY[x]
<< "\t " << varZ[x] << endl;
}
///////////////////////////// Run From 10.14 Debugging Exercise p289-292 ///////////////////
Please enter your first name: Ben
Please enter your last name: Shutter
Welcome Ben Shutter!
Hope all is well
x y z
0 100 100
1 101 102
2 102 104
3 103 106
4 104 108
5 105 110
6 106 112
7 107 114
8 108 116
9 109 118
C:\Users\Lenovo\source\repos\cst116-lab6-BensProgramma\x64\Debug\CST116F2021-Lab6.exe (process 18192) exited with code 0.
To automatically close the console when debugging stops, enable Tools->Options->Debugging->Automatically close the console when debugging stops.
Press any key to close this window . . .
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//11c
//10.15 Programming Exercises
//pp 292 - 293
//10 pts #1
//
#include "Lab6_Header.h"
int main()
{
char User_Input[35];
cout << "\nenter a string up to 35 characters long: ";
cin.getline(User_Input, 35);
isPalindrome(User_Input);
isAlphaStr(User_Input);
char part_char = 'a';
cout << "\nwhat character would you like to count?: ";
cin >> part_char;
countChar(User_Input,part_char);
}
void isPalindrome(char User_Input[35])
{
char Rev[35]{};
strcpy(Rev, User_Input);
_strrev(Rev);
int Pal = strcmp(User_Input, Rev);
if (Pal == 0)
{
cout << User_Input << " is a Palindrome! \n";
}
else if (Pal == 1)
{
cout << User_Input << " is not a Palindrome.";
}
}
void isAlphaStr(char User_Input[35])
{
int k = 0;
for (int i = 0; User_Input[i] == '\0'; i++)
{
if (isalpha(User_Input[i]) == 0)
k++;
}
if (k > 0)
{
cout <<"\n" << User_Input << " does not contain just alphbetic characters\n";
}
else if (k == 0)
{
cout << "\n" << User_Input << " contains only alphabetic characters\n";
}
}
void countChar(char User_Input[35], char part_char)
{
int count = 0;
for (int i = 0; i<35; i++)
{
if (User_Input[i] == part_char)
{
count++;
}
}
cout << "\ncharacter: " << part_char << " ... " << count << " counted.\n\n";
}
//// RUN for 10.14 Programming Exercises ////////////////////////////////////////////////////////////////////////////////
RUN #1
enter a string up to 35 characters long: radar
'radar' is a Palindrome!
'radar' contains only alphabetic characters
what character would you like to count?: r
character: r ... 2 counted.
C:\Users\Lenovo\source\repos\cst116-lab6-BensProgramma\x64\Debug\CST116F2021-Lab6.exe (process 25036) exited with code 0.
To automatically close the console when debugging stops, enable Tools->Options->Debugging->Automatically close the console when debugging stops.
Press any key to close this window . . .
RUN #2
enter a string up to 35 characters long: radar567
'radar567' is not a Palindrome.
'radar567' does not contain just alphbetic characters
what character would you like to count?: 7
character: 7 ... 1 counted.
C:\Users\Lenovo\source\repos\cst116-lab6-BensProgramma\x64\Debug\CST116F2021-Lab6.exe (process 636) exited with code 0.
To automatically close the console when debugging stops, enable Tools->Options->Debugging->Automatically close the console when debugging stops.
Press any key to close this window . . .
|