1. Using classes,design an online address book to keep track of the names,addres
ID: 3647105 • Letter: 1
Question
1. Using classes,design an online address book to keep track of the names,addresses,phone number and birthdays of family memebers,close friends and certain bussiness associates.your program should be able to handle a maximum of 500 entries. by first
a. Define the class Address that can store a street address, city, state and zip code. Use the appropriate methods to print and store the address. Also, use constructors to automatically initialize the data members.
b. Define the class ExtPerson using the class Person, the class Date, and the class Address. Add a data member to this class to classify the person as a family member, friend, or business associate. Also, add a data member to store the phone number. Add (or override) methods to print and store the appropriate information. Use constructors to automatically initialize the data members.
c. Define the class AddressBook using previously defined classes. An object of type AddressBook should be able to process a maximum of 500 entries.
The program should perform:
i. Load the data into the address book from a disk.
ii. Sort the address book by last name
iii. Search for a person by last name
iv. Print the address, phone number, and date of birth (if available) of a given person
v. Print the names of people whose birthdays are in a given month or between two given dates
vi. Print the names of all the people between two last names.
2. Redo Program so that the address book is stored in a vector.
Explanation / Answer
class personType { public: void print() const; //Function to output the first name and last name //in the form of firstName lastName. void setName(string first, string last); //Function to set firstName and lastName according //to the parameters. //Postcondition: firstName = first; lastName = last string getFirstName() const; //Function to return the first name. //Postcondition: The value of the data member firstName // is returned. string getLastName() const; //Function to return the last name. //Postcondition: The value of the data member lastName // is returned. personType(string first = "", string last =""); //constructor //Sets firstName and lastName according to the parameters. //The default values of the parameters are empty strings. //Postcondition: firstName = first; lastName = last private: string firstName; string lastName; }; class dateType { public: void setDate (int month, int day, int year); //Function to set date. //The data members dMonth, dDay, and dYear are set //according to the parameters. //Postcondition: dMonth = monh; dDay = day; // dYear = year int getDay() const; //Function to return the day. //Postcondition: The value of dDay is returned. int getMonth() const; //Function to return the month. //Postcondition: The value of dMonth is returned. int getYear() const; //Function to return the year. //Postcondition: The value of dYear is returned. void printDate() const; //Function to output the date in the form mm-dd-yyyy. dateType(int month = 1, int day = 1, int year = 1900); //constructor to set the date //The data members dMonth, dDay, and dYear are set //according to the parameters. //Postcondition: dMonth = month; dDay = day; // dYear = year //If no values are specified, the default values are //used to intialize the data members. private: int dMonth; //variable to store the month int dDay; //variable to store the day int dYear; //variable to store the year };
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.