diff options
| author | raquelc <[email protected]> | 2024-02-19 14:48:43 -0800 |
|---|---|---|
| committer | raquelc <[email protected]> | 2024-02-19 14:48:43 -0800 |
| commit | f55dc202eb124ac993ea6ff647495a2680ecb6bb (patch) | |
| tree | ae8c3b3e76f819ac20f7b5cbd784fc021063b831 /Hw-5 | |
| parent | complete (diff) | |
| download | homework-5-raquel191-main.tar.xz homework-5-raquel191-main.zip | |
Diffstat (limited to 'Hw-5')
| -rw-r--r-- | Hw-5/Hw-5/contacts.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Hw-5/Hw-5/contacts.cpp b/Hw-5/Hw-5/contacts.cpp index 5a21028..c7b4d58 100644 --- a/Hw-5/Hw-5/contacts.cpp +++ b/Hw-5/Hw-5/contacts.cpp @@ -49,10 +49,11 @@ void Printcontacts(contact(&contacts)[10]) { } void update(contact(&contacts)[10]) { - cout << "Print contact to update" << endl; + //cout << "Print contact to update" << endl; Printcontacts(contacts); int num = 0; + cout << "Enter contact number to update" << endl; cin >> num; |