
The following code creates a small phone book. An array is used to store a list of names and another array is used to störe the phone numbers that go with each name. For example. Michael Myers’ phone number is 333-8000 and Ash Williams’ phone number is 333-2323. Write the function lookupName so the code properly looks up and returns the phone number for the input target name.
int main ()
{
using namespace std;
string names[] = {“Michael Myers”,
“Ash Williams”,
“Jack Torrance”,
“Freddy Krueger”};
string phoneNumbers[] = {“333–8000”, “333–2323”,
“333–6150”, “339–7570”};
string targetName, targetPhone;
char c;
do
{
cout << “Enter a name to find the ”
<< “corresponding phone number.”
<< endl;
getline(cin, targetName);
targetPhone = lookupName(targetName,
names, phoneNumbers, 4);
if (targetPhone.length() > 0)
cout << “The number is: “
<< targetPhone << endl;
else
cout << “Name not found. ”
<< endl;
cout << “Look up another name? (y/n)”
<< endl;
cin > c;
cin.ignore();
} while (c == ‘y’);
return 0;
}

Want to see the full answer?
Check out a sample textbook solution
Chapter 7 Solutions
Problem Solving with C++ (9th Edition)
Additional Engineering Textbook Solutions
Degarmo's Materials And Processes In Manufacturing
Elementary Surveying: An Introduction To Geomatics (15th Edition)
SURVEY OF OPERATING SYSTEMS
Database Concepts (8th Edition)
Java How to Program, Early Objects (11th Edition) (Deitel: How to Program)
Computer Science: An Overview (13th Edition) (What's New in Computer Science)
- C++ for Engineers and ScientistsComputer ScienceISBN:9781133187844Author:Bronson, Gary J.Publisher:Course Technology PtrC++ Programming: From Problem Analysis to Program...Computer ScienceISBN:9781337102087Author:D. S. MalikPublisher:Cengage LearningMicrosoft Visual C#Computer ScienceISBN:9781337102100Author:Joyce, Farrell.Publisher:Cengage Learning,
- Programming Logic & Design ComprehensiveComputer ScienceISBN:9781337669405Author:FARRELLPublisher:CengageProgramming with Microsoft Visual Basic 2017Computer ScienceISBN:9781337102124Author:Diane ZakPublisher:Cengage LearningEBK JAVA PROGRAMMINGComputer ScienceISBN:9781337671385Author:FARRELLPublisher:CENGAGE LEARNING - CONSIGNMENT




