Question: #include #include #include using namespace std; // The Location class holds general data about the location class Location { public: }; // The House class


#include
// The Location class holds general data about the location class Location { public: };
// The House class holds general data about the location class House { private: protected: public: // Default constructor House() {
} // Constructor // Accessors
};
// The Bungalow class represents a bungalow class Bungalow : { private: public: // Default constructor // Constructor #2 // Accessor for deriveType attribute
//Display the houses for rent
};
// The Apartment class represents an apartment class Apartment { private: public: // Default constructor // Constructor #2 // Accessor for deriveType attribute //Display the houses for rent
};
int main() {
system ("pause"); return 0; }
Question: Suppose you are hired to develop a program for a rental house agent. The system is used to advertise all houses for rent. The rental houses include two types of houses: bungalow and apartment houses. Location House -street: string -no Room:int: -town: string #rentRate : double +Location (string" "string") +House) + getStreet(): string + House Location, int, double) + getTown(): string + getLocation():string +getFullLocation(): string + getRoom():int + getRate() : double + get Deposit(): virtual double + display(): virtual void Bungalow -land : int +Bungalow + Bungalow(Location, int, double, int) + getLand():int + getDeposit(): double + display:void Apartment -level:int +Apartment +Apartment Location int, double, int) +getFLevel:int + getDeposit(): double + display:void Figure 1. UML Class Diagram 1. Given the class diagram in Figure 1, write C++ program based on the diagram. Note that, the purpose of each operation is as its name implies. Define class Location, class House, class Bungalow and class Apartment with attributes and methods as shown in the class diagram. Class House has pure virtual function, namely getDeposit() and display(). The deposit for Bungalow is 6 months rent amount while the deposit for Apartment is 3 months rent amount. The information for Apartment and Bungalow to be displayed in display() function are as shown in Figure 2. 2. Define main() program with the following implementation: Define one Bungalow instance with values as shown in the output in Figure 2. Define two Apartment instances with values as shown in the output in Figure 2. Display the information of all the houses for rent as shown in the Figure 2. *** HOUSE FOR RENT *** We have a bungalow located at Eco Botanic, Nusajaya with 6 bedrooms Land size : 1200 sqft. Monthly rental rate: RM2400.00 Deposit : RM14400.00 We have an apartment located at Meridin, Medini with 3 bedrooms, at level 5. Monthly rental rate: RM1000.00 Deposit : RM3000.00 Medini with 2 bedrooms, We have an apartment located at Meridin at level 2 Monthly rental rate: RM700.00 Deposit : RM2100.00 Figure 2. Expected Output
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
