aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTyler Taormina <[email protected]>2021-11-11 21:47:00 -0800
committerTyler Taormina <[email protected]>2021-11-11 21:47:00 -0800
commit0f2c230ef641114ab4b50bdab573c77f3fb8547f (patch)
tree7a1b60544780401fc0f6feea8d51300e036338ae
parentUpdates (diff)
downloadcst116-lab7-till-t-0f2c230ef641114ab4b50bdab573c77f3fb8547f.tar.xz
cst116-lab7-till-t-0f2c230ef641114ab4b50bdab573c77f3fb8547f.zip
Update
-rw-r--r--lab7.txt8
1 files changed, 5 insertions, 3 deletions
diff --git a/lab7.txt b/lab7.txt
index d454d92..94c1dd4 100644
--- a/lab7.txt
+++ b/lab7.txt
@@ -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)
{