Problem Statement: Expense class You are required to write a class name “Expense
ID: 3616078 • Letter: P
Question
Problem Statement: Expense classYou are required to write a class name “Expenses “.Expenses class has
• Constructors
• Destructor
• Write a function to add expenses for a month
• Write function which displays these expenses.
• Write a function which calculates savings for a month.
• Expense class has following data members
o Total Income // total income of person/family
o Gbill //Gas bill
o Ebill //Electricity bill
o Wbill // water Bill
o OExpenses // any other expenses
o Month //Month for which you are calculating these expenses
You have to populate all these record on monthly basis; to populaterecords; you have to use getter and setters for all data members.
Explanation / Answer
#include<iostream>
#include<string>
using namespace std;
class Expenses {
public:
Expenses();
double addExpenses();
void printExpenses();
double savings();
private:
double totalIncome;
double Gbill;
double Wbill;
double Oexpenses;
string Month;
};
Expenses::Expenses(){
totalIncome = 0.0;
Gbill = 0.0;
Wbill = 0.0;
Oexpenses = 0.0;
Month = " ";
}
//********************************
double Expenses::addExpenses(){
return Gbill + Wbill + Oexpenses;
}
//*******************************
void Expenses::printExpenses(){
cout<<"Gas Bill: " << Gbill << endl;
cout<<"Water Bill: " << Wbill << endl;
cout<<"Other: " << Oexpenses << endl;
}
//**********************************
double Expenses::savings(){
return totalIncome - addExpenses();
}
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.