You are viewing a single comment's thread. Return to all comments →
class Rectangle { protected: int width; int height; public: void display() { cout << width << " " << height << endl; } }; class RectangleArea : public Rectangle { public: void read_input() { cin >> width >> height; } void display() { cout << width * height << endl; } };
Seems like cookies are disabled on this browser, please enable them to open this website
Rectangle Area
You are viewing a single comment's thread. Return to all comments →