Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

In C++ Language Please!! Write a program that keeps track of a telephone directory. The program should create a structure, Person, with the following data:

In C++ Language Please!!

Write a program that keeps track of a telephone directory. The program should create a structure, Person, with the following data:

struct Person

{

string firstName;

string lastName;

string phoneNumber;

};

The program should then create a vector of Person structs, called directory. Your program should have functions to:

- Read the vector data from a data file telephoneData.txt into the vector directory.

- Print the details of all Persons in the vector. You may use the following telephoneData.txt file

You may use the following telephoneData.txt file:

Tom Garcia 855-433-2076

Nancy James 202-872-1010

Bill Meyer 120-343-5623

Jack Didier 352-654-1983

Your program should print something like this:

Name Telephone -----------------------------------------------------

Tom Garcia 855-433-2076

Nancy James 202-872-1010

Bill Meyer 120-343-5623

Jack Didier 352-654-198

Please show output on screen when finished.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Oracle Database Foundations Technology Fundamentals For IT Success

Authors: Bob Bryla

1st Edition

0782143725, 9780782143720

More Books

Students also viewed these Databases questions

Question

Question What are the requirements for a SIMPLE 401(k) plan?

Answered: 1 week ago