#include #include using namespace std; class Point{ double x, y, z; public: Point(double _x, double _y, double _z){ x=_x; y=_y; z=_z; } ~Point(){ cout<<"Destructor"<