Question
Create a program in C++ in netbeans that simulates a simple contact manager application given the following requirements: 1. The program is to store individual
Create a program in C++ in netbeans that simulates a simple contact manager application given the following requirements: 1. The program is to store individual names and associated telephone numbers in parallel arrays. 2. The program should input from the user 10 peoples names and their telephone numbers and add the data to the parallel arrays. 3. When data input is finished, the program should sort both data arrays in ascending order based on telephone numbers maintaining the associations between names and telephone numbers. 4. The program will print the list of users and their telephone numbers after sorting. 5. After printing the list, the program will ask for a name to search for. 6. The user will then enter a name. 7. The program will then search for the name and print the name and the associated telephone number for that person. 8. If the person is not in the array, the program will print that the user cannot be found.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started