diff options
| author | JacobAKnox <[email protected]> | 2021-11-10 19:47:43 -0800 |
|---|---|---|
| committer | JacobAKnox <[email protected]> | 2021-11-10 19:47:43 -0800 |
| commit | 31a4c9661bcef963f0c12bf7855f341b5a85d7fe (patch) | |
| tree | 7be09e087688cbaa5d9fa9aab6f768380381add5 /Output.txt | |
| parent | 12b done (diff) | |
| download | cst116-lab7-jacobaknox-master.tar.xz cst116-lab7-jacobaknox-master.zip | |
Diffstat (limited to 'Output.txt')
| -rw-r--r-- | Output.txt | 111 |
1 files changed, 111 insertions, 0 deletions
diff --git a/Output.txt b/Output.txt new file mode 100644 index 0000000..61848f9 --- /dev/null +++ b/Output.txt @@ -0,0 +1,111 @@ +Output: + + + --String program-- + 1. Add a string + 2. Print out string list + 3. Find a substring + 4. Remove an element + 5. Exit Program + +Input your choice: 1 +Input a string: test1 +test1 added to list. + --String program-- + 1. Add a string + 2. Print out string list + 3. Find a substring + 4. Remove an element + 5. Exit Program + +Input your choice: 1 +Input a string: test2 +test2 added to list. + --String program-- + 1. Add a string + 2. Print out string list + 3. Find a substring + 4. Remove an element + 5. Exit Program + +Input your choice: 1 +Input a string: test3 +test3 added to list. + --String program-- + 1. Add a string + 2. Print out string list + 3. Find a substring + 4. Remove an element + 5. Exit Program + +Input your choice: 1 +Input a string: Hello World! +Hello World! added to list. + --String program-- + 1. Add a string + 2. Print out string list + 3. Find a substring + 4. Remove an element + 5. Exit Program + +Input your choice: 2 +Outputing string list: +test1 +test2 +test3 +Hello World! + --String program-- + 1. Add a string + 2. Print out string list + 3. Find a substring + 4. Remove an element + 5. Exit Program + +Input your choice: 3 +Input the substring to search for: lo +lo was found in string 4: Hello World! at position 3 + --String program-- + 1. Add a string + 2. Print out string list + 3. Find a substring + 4. Remove an element + 5. Exit Program + +Input your choice: 3 +Input the substring to search for: hi +hi could not be found in the list. + --String program-- + 1. Add a string + 2. Print out string list + 3. Find a substring + 4. Remove an element + 5. Exit Program + +Input your choice: 4 +Input the item to remove: 7 +Please input a value between 1 and 5. +Input the item to remove: 2 +Rmeoving item: 2 + --String program-- + 1. Add a string + 2. Print out string list + 3. Find a substring + 4. Remove an element + 5. Exit Program + +Input your choice: 2 +Outputing string list: +test1 +test3 +Hello World! + --String program-- + 1. Add a string + 2. Print out string list + 3. Find a substring + 4. Remove an element + 5. Exit Program + +Input your choice: 5 +Exiting Program... +C:\Users\jakno\source\repos\CST116cst116-lab7-JacobAKnox\12c\Debug\12c.exe (process 9520) exited with code 0. +Press any key to close this window . . . |