Using classes, design an online address book to keep track of the names, addresses, phone numbers, and dates of birth of family members, close friends, and certain business associates. Your program should be able to handle a maximum of 500 entries. a. Define a class, addressType, that can store a street address, city, state, and ZIP code. Use the appropriate functions to print and store the address. Also, use constructors to automatically initialize the member variables. b. Define a class extPersonType , the class personType, the class dateType (as designed in Q1), and the class addressType. Add a member variable to this class to classify the person as a family member, friend, or business associate. Also, add a member variable to store the phone number. Add (or override) the functions to print and store the appropriate information. Use constructors to automatically initialize the member variables. c. Define the class addressBookType using the previously defined classes. An object of the type addressBookType should be able to process a maximum of 500 entries. The program should perform the following operations: a. Load the data into the address book from a disk. b. ii. Sort the address book by last name. c. iii. Search for a person by last name. d. iv. Print the address, phone number, and date of birth (if it exists) of a given person. e. v. Print the names of the people whose birthdays are in a given month. f. vi. Print the names of all of the people between two last names. g. vii. Depending on the user’s request, print the names of all family members, friends, or business associates. Note: use c++ language solve as soon as possible
Using classes, design an online address book to keep track of the names, addresses, phone numbers,
and dates of birth of family members, close friends, and certain business associates. Your program should
be able to handle a maximum of 500 entries.
a. Define a class, addressType, that can store a street address, city, state, and ZIP code. Use the
appropriate functions to print and store the address. Also, use constructors to automatically
initialize the member variables.
b. Define a class extPersonType , the class personType, the class dateType (as designed in Q1), and
the class addressType. Add a member variable to this class to classify the person as a family
member, friend, or business associate. Also, add a member variable to store the phone number.
Add (or override) the functions to print and store the appropriate information. Use constructors to
automatically initialize the member variables.
c. Define the class addressBookType using the previously defined classes. An object of the type
addressBookType should be able to process a maximum of 500 entries. The program should
perform the following operations:
a. Load the data into the address book from a disk.
b. ii. Sort the address book by last name.
c. iii. Search for a person by last name.
d. iv. Print the address, phone number, and date of birth (if it exists) of a given person.
e. v. Print the names of the people whose birthdays are in a given month.
f. vi. Print the names of all of the people between two last names.
g. vii. Depending on the user’s request, print the names of all family members, friends, or
business associates.
Note:
use c++ language
solve as soon as possible
Trending now
This is a popular solution!
Step by step
Solved in 2 steps