// CS304P Lab 3 Problem KST Learning #include #include using namespace std; class Room { private: float Width, Height; public: Room() { Width = 0; Height = 0; cout << "Default Constructor is Called"; cout << "\nHeight: " << Height << "\nWidth: " << Width; } Room(float h) { Width = 0; Height = h; cout << "\n\nOne Argument Constructor is Called"; cout << "\nHeight: " << Height << "\nWidth: " << Width; } Room(float w, float h) { Width = w; Height = h; cout << "\n\nTwo Argument Constructor is Called"; cout << "\nHeight: " << Height << "\nWidth: " << Width; } }; main() { Room R1, R2(10), R3(20,10); getch(); return 0; }