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
|
CST116
Module 7: Lab 7
12a Write a program that includes a function to read (at least 100) strings into an array.
Allow the user to either add a string or print out the contents of the array.
Be sure to stop �printing� at the end of the entered values -- don�t �print� after the end of the user�s entered data.
Be sure to give the user the chance to leave the program.
10 pts Submit: code & runs
CODE:
#include <iostream>
#include <cstring>
#include <string>
using namespace std;
#define ARRAY_SIZE 100
void GetInput(int& choice, int& count, string[ARRAY_SIZE]);
void Options(int& choice, int& count, string[ARRAY_SIZE]);
int main()
{
string stringArray[ARRAY_SIZE]{};
int choice = 0;
int count = 0;
GetInput(choice, count, stringArray);
}
void GetInput(int& choice, int& count, string stringArray[ARRAY_SIZE])
{
cout << "\nEnter a word: ";
cin >> stringArray[count];
count++;
Options(choice, count, stringArray);
}
void Options(int& choice, int& count, string stringArray[ARRAY_SIZE])
{
cout << "\n\n\t1. Enter another word ";
cout << "\n\t2. Print current words ";
cout << "\n\t3. Exit ";
cout << "\n\nWhat would you like to do next? ";
cin >> choice;
switch (choice)
{
case 1:
GetInput(choice, count, stringArray);
break;
case 2:
for (int i = 0; i < count; i++)
{
cout << stringArray[i] << "\n";
}
break;
case 3:
cout << "\n\tGoodbye :) " << endl;
break;
default:
cout << "\n\tInvalid option entered." << endl;
}
}
RUN 1:
Enter a word: bella
1. Enter another word
2. Print current words
3. Exit
What would you like to do next? 3
Goodbye :)
RUN 2:
Enter a word: hello
1. Enter another word
2. Print current words
3. Exit
What would you like to do next? 1
Enter a word: what
1. Enter another word
2. Print current words
3. Exit
What would you like to do next? 2
hello
what
12b Add to your program from part 12a:
An option in a function that can find a string or substring in a string in the array.
This need just be the first occurrence of the string or substring.
10 pts Submit: code & runs
CODE:
#include <iostream>
#include <cstring>
#include <string>
using namespace std;
#define ARRAY_SIZE 100
void GetInput(int& choice, int& count, string[ARRAY_SIZE]);
void Options(int& choice, int& count, string[ARRAY_SIZE]);
void Find(int& choice, int& count, string[ARRAY_SIZE]);
int main()
{
string stringArray[ARRAY_SIZE]{};
int choice = 0;
int count = 0;
GetInput(choice, count, stringArray);
}
void GetInput(int& choice, int& count, string stringArray[ARRAY_SIZE])
{
cout << "\nEnter a word: ";
cin >> stringArray[count];
count++;
Options(choice, count, stringArray);
}
void Options(int& choice, int& count, string stringArray[ARRAY_SIZE])
{
cout << "\n\n\t1. Enter another word ";
cout << "\n\t2. Print current words ";
cout << "\n\t3. Look for a substring ";
cout << "\n\t4. Exit ";
cout << "\n\nWhat would you like to do next? ";
cin >> choice;
switch (choice)
{
case 1:
GetInput(choice, count, stringArray);
break;
case 2:
for (int i = 0; i < count; i++)
{
cout << stringArray[i] << "\n";
}
break;
case 3:
Find(choice, count, stringArray);
case 4:
cout << "\n\tGoodbye :) " << endl;
break;
default:
cout << "\n\tInvalid option entered." << endl;
}
}
void Find(int& choice, int& count, string stringArray[ARRAY_SIZE])
{
string subString{};
int i = 0, j = 0, k = 0;
cout << "What do you want to look for? " << endl;
cin >> subString;
while ((subString[i] != stringArray[0][j]) && (j < stringArray[count].size()))
j++;
if (subString[i] == stringArray[0][j])
while ((subString[i] == stringArray[0][j]) && (i < subString.size())
&& j < stringArray[0].size())
{
i++;
j++;
}
if (i == subString.size())
cout << "\nSubstring " << subString << " was found.";
else
cout << "\nSubstring " << subString << " was not found.";
}
RUN 1:
Enter a word: hello
1. Enter another word
2. Print current words
3. Look for a substring
4. Exit
What would you like to do next? 3
What do you want to look for?
he
Substring he was found.
RUN 2:
Enter a word: hello
1. Enter another word
2. Print current words
3. Look for a substring
4. Exit
What would you like to do next? 3
What do you want to look for?
hi
Substring hi was not found.
11c Add to your program from part 12b:
An option in a function that can remove a string from the array (and compress the array) based on its location in the array.
Make sure that the �print� option reflects the removed string.
10 pts Submit: code & runs
Total: 30 pts
CODE:
#include <iostream>
#include <cstring>
#include <string>
using namespace std;
#define ARRAY_SIZE 100
void GetInput(int& choice, int& count, string[ARRAY_SIZE]);
void Options(int& choice, int& count, string[ARRAY_SIZE]);
void Find(int& choice, int& count, string[ARRAY_SIZE]);
void Delete(int& choice, int& count, string[ARRAY_SIZE]);
void Print(int& choice, int& count, string[ARRAY_SIZE]);
int main()
{
string stringArray[ARRAY_SIZE]{};
int choice = 0;
int count = 0;
GetInput(choice, count, stringArray);
}
void GetInput(int& choice, int& count, string stringArray[ARRAY_SIZE])
{
cout << "\nEnter a word: ";
cin >> stringArray[count];
count++;
Options(choice, count, stringArray);
}
void Options(int& choice, int& count, string stringArray[ARRAY_SIZE])
{
cout << "\n\n\t1. Enter another word ";
cout << "\n\t2. Print current words ";
cout << "\n\t3. Look for a substring ";
cout << "\n\t4. Delete a word ";
cout << "\n\t5. Exit ";
cout << "\n\nWhat would you like to do next? ";
cin >> choice;
switch (choice)
{
case 1:
GetInput(choice, count, stringArray);
break;
case 2:
Print(choice, count, stringArray);
break;
case 3:
Find(choice, count, stringArray);
case 4:
Delete(choice, count, stringArray);
case 5:
cout << "\n\tGoodbye :) " << endl;
break;
default:
cout << "\n\tInvalid option entered." << endl;
cout << "\n\tTry again: " << endl;
Options(choice, count, stringArray);
}
}
void Find(int& choice, int& count, string stringArray[ARRAY_SIZE])
{
string subString{};
int i = 0, j = 0, k = 0;
cout << "What do you want to look for? " << endl;
cin >> subString;
while ((subString[i] != stringArray[0][j]) && (j < stringArray[count].size()))
j++;
if (subString[i] == stringArray[0][j])
while ((subString[i] == stringArray[0][j]) && (i < subString.size())
&& j < stringArray[0].size())
{
i++;
j++;
}
if (i == subString.size())
cout << "\nSubstring " << subString << " was found.";
else
cout << "\nSubstring " << subString << " was not found.";
Options(choice, count, stringArray);
}
void Delete(int& choice, int& count, string stringArray[ARRAY_SIZE])
{
int Pos = 0;
int i = 0;
cout << "What position is the word you want to remove in? ";
cin >> Pos;
Pos--;
for (int i = Pos; i < count; ++i)
stringArray[i] = stringArray[i + 1];
Options(choice, count, stringArray);
}
void Print(int& choice, int& count, string stringArray[ARRAY_SIZE])
{
for (int i = 0; i < count; i++)
{
cout << stringArray[i] << "\n";
}
Options(choice, count, stringArray);
}
RUN 1:
Enter a word: hello
1. Enter another word
2. Print current words
3. Look for a substring
4. Delete a word
5. Exit
What would you like to do next? 1
Enter a word: world
1. Enter another word
2. Print current words
3. Look for a substring
4. Delete a word
5. Exit
What would you like to do next? 4
What position is the word you want to remove in? 2
1. Enter another word
2. Print current words
3. Look for a substring
4. Delete a word
5. Exit
What would you like to do next? 2
hello
1. Enter another word
2. Print current words
3. Look for a substring
4. Delete a word
5. Exit
What would you like to do next? 5
Goodbye :)
RUN 2:
Enter a word: Isabella
1. Enter another word
2. Print current words
3. Look for a substring
4. Delete a word
5. Exit
What would you like to do next? 1
Enter a word: Jorahnie
1. Enter another word
2. Print current words
3. Look for a substring
4. Delete a word
5. Exit
What would you like to do next? 1
Enter a word: Mon
1. Enter another word
2. Print current words
3. Look for a substring
4. Delete a word
5. Exit
What would you like to do next? 4
What position is the word you want to remove in? 3
1. Enter another word
2. Print current words
3. Look for a substring
4. Delete a word
5. Exit
What would you like to do next? 2
Isabella
Jorahnie
1. Enter another word
2. Print current words
3. Look for a substring
4. Delete a word
5. Exit
What would you like to do next? 5
Goodbye :)
|