Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

You are required to write a class name “Expenses “.Expenses class has · Construc

ID: 3616083 • Letter: Y

Question

You 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 amonth.  

· Expense class has following data members

o Total Income     // total income ofperson/family

o Gbill          //Gasbill

oEbill          //Electricitybill

o Wbill         // waterBill

o OExpenses    // any other expenses

o Month       //Month for whichyou are calculating these expenses

You have to populate all these record on monthly basis; topopulate records; you have to use getter and setters for all datamembers.

Explanation / Answer

#include<iostream>
#include<string>
using namespace std;

class Expenses {
public:
Expenses();
double addExpenses();
void printExpenses();
double savings();
double getInclome();
void setIncome(double money);
double getGbill();
void setGbill(double bill);
double getWbill();
void setWbill(double bill);
double Oexpense();
void setOexpense(double bill);
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();

}
//***********************************
void setIncome(double money){
totalIncome = money;
}
//*********************************
double getInclome(){
return totalIncome;

}
//**********************************
double getGbill(){
return Gbill;
}
//**************************************
void setGbill(double bill){
Gbill = bill;
}
//**************************************
double getWbill(){
return Wbill;
}
//***********************************
void setWbill(double bill){
  Wbill = bill;

}
//*****************************************
double Oexpense(){
return Oexpenses;

}
//********************************************
void setOexpense(double bill){
Oexpenses = bill;
}
//******************************************

Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
Chat Now And Get Quote