#ifndef RECTANGLE_H #define RECTANGLE_H class Rectangle { public: Rectangle(); Rectangle(int, int); int getWidth() const; int getHeight() const; int getArea() const; int getLength() const; static int getNumOfRect(); private: int w, h; static int numOfRect; }; #endif