diff options
| author | Tyler Taormina <[email protected]> | 2021-11-11 21:47:00 -0800 |
|---|---|---|
| committer | Tyler Taormina <[email protected]> | 2021-11-11 21:47:00 -0800 |
| commit | 0f2c230ef641114ab4b50bdab573c77f3fb8547f (patch) | |
| tree | 7a1b60544780401fc0f6feea8d51300e036338ae | |
| parent | Updates (diff) | |
| download | cst116-lab7-till-t-0f2c230ef641114ab4b50bdab573c77f3fb8547f.tar.xz cst116-lab7-till-t-0f2c230ef641114ab4b50bdab573c77f3fb8547f.zip | |
Update
| -rw-r--r-- | lab7.txt | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -58,14 +58,16 @@ void GatherStrings() getline (cin, usr_data); array[limit] = usr_data; limit += 1; - cout << "\n\nEnter 1 to add another string to the data base." << endl; + cout << "\n\nEnter [1] to add another string to the data base." << endl; cout << "OR" << endl; - cout << "Enter 0 to stop and see all the entries we have so far: "; + cout << "Enter [0] to stop and see all the entries we have so far: "; cin >> flag; ClearBuffer(); } - cout << "\n\nThis is what we have in our database so far...\n\n" << endl; + cout << "==================================================================\n"; + cout << "This is what we have in our database so far..." << endl; + cout << "==================================================================\n"; while (i < limit) { |