Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Financial management theory and practice

Authors: Eugene F. Brigham and Michael C. Ehrhardt

12th Edition

978-0030243998, 30243998, 324422695, 978-0324422696

Students also viewed these Programming questions

Question

6. What is a perfectly competitive firms short-run supply curve?

Answered: 1 week ago

Question

Which of the following is NOT a relational operator? 1. =

Answered: 1 week ago