The class base
Consider the following class definition: (8) class base public: void setXYZ(int a, int b, int c); void setX(int a); int getX() const return x; void setY(int b); int getY() const return y; int mystryNum() return (x * y – z * z); void print() […]