In this programming assignment youll identify the number of


In this programming assignment, you'll identify the number of potential customers for a business. The starter program outputs the number of potential customers in a user­entered age range given a file with people's data.

1. Move the class Person to the separate files: person.h and person.cpp. Make sure you can still compile with separate files.

2. During file reading, the program isn't storing the gender or yearly income of the people. Instead, the default values are being printed. Fix the program to correctly set the data read from file.

The regions of the code that need to be fixed are marked with:

"FIXME Also set gender and yearly income"

3. Allow the user to select the potential customer's gender: "male", "female", or "any". The program should now output only potential customers with the user­specified gender and age. Update the GetUserInput function to prompt the user and store the user's gender selection. Also, create a function GetPeopleWithSpecificGender that returns only people with the user­specified gender.

Debugging suggestion: Use a function to print main's vector of Persons so that you can see who is in the vector after each function call. This technique may help debug the newly created function GetPeopleWithSpecificGender.

4. In addition to age and gender, allow the user to select the lower and upper range of a customer's yearly income.

Update the GetUserInput function to prompt the user and store the user's specified range. Also, create a function GetPeopleInIncomeRange that returns only people with the user­specified yearly income.

Attachment:- Assignment.rar

Solution Preview :

Prepared by a verified Expert
C/C++ Programming: In this programming assignment youll identify the number of
Reference No:- TGS01523230

Now Priced at $20 (50% Discount)

Recommended (98%)

Rated (4.3/5)