Question
Write a program that contains a class Family with data member list of FamilyMembers. You can use the following Members structure. struct FamilyMembers { string
Write a program that contains a class Family with data member list of FamilyMembers. You can use the following Members structure.
struct FamilyMembers
{
string name;
double age;
double salary;
}
class Family
{
//definitions
};
Create setter and getter member functions. Create a member function totalIncome(), to calculate the total income of family by calling private method getTotalIncome()
Add exception handling to throw exception, in getTotalIncome() function, if family income exceeds 1Million CAD or below 25000 CAD
Write another member function getListOfSalaries() that returns the list of salaries of each family member.
Create a functor FamilyIncome to add income of each family member. Within main use accumulate algorithm, list of salaries you received from calling getListOfSalaries(), and functor to get the sum of family income.
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