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. 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. Define a class extPersonType using the class personType with following members and methods: firstname, lastname, and accessors and mutators, print to display, and constructors.
Problem (Online Address Book):
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.
- 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.
- Define a class extPersonType using the class personType with following members and methods: firstname, lastname, and accessors and mutators, print to display, and constructors.
Define a class dateType for month, day and year as members with its accessors, mutators, and constructors)
Design a 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.
- Define the class addressBookType using the previously defined classes. An object of the type addressBookType should be able to process any number of entries.
The program should perform the following operations:
- Load the data into the address book from data file.
- Sort the address book by last name.
- Search for a person by last name.
- Print the address, phone number, and date of birth (if it exists) of a given person.
- Print the names of the people whose birthdays are in a given month.
- Print the names of all the people between the two last names.
- Depending on the user’s request, print the names of all family members, friends, or business associates.
- Allow the user to save the data in the address book.
c++
Trending now
This is a popular solution!
Step by step
Solved in 3 steps