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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!