Ejemplo n.º 1
0
int main() {
	RectangleArea r_area;
	r_area.Input();
	Rectangle *r;
	r=&r_area;
	r->Display();
	r_area.Display();
	return 0;
}