using namespace std; class Tower { private: int height; public: Tower(); Tower(int tall); int getHeight(); }; #include #include #include #include #include "circle.h" using namespace std; Tower::Tower() { height = 1; } Tower::Tower(int tall) { height = tall; } int Tower::getHeight() { return height; } #include #include #include #include "circle.h" int main(void) { Tower myTower; Tower seoulTower(..