Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Classes/Streams - Marketing software In this programming assignment, you'll identify the number of potential customers for a business. The starter program outputs the number of
Classes/Streams - Marketing software 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 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 GetUserlnput 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 GetUserlnput function to prompt the user and store the user's specified range. Also, create a function GetPeoplelnincomeRange that returns only people with the user-specified
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started