You are viewing a single comment's thread. Return to all comments →
class Rectangle{ public: int height,width; void display(){ cout<<width<<" "<<height<<endl; } }; class RectangleArea: public Rectangle{ public: void read_input(){ cin>>width>>height; } void display(){ cout<<(width*height); } };
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 →