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

Problem Statement:Expense class You are required to write a class name “Expenses

ID: 3616077 • Letter: P

Question

Problem Statement:Expense class

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 which youare 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();
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();

}

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