#include #include #include "point.h" using namespace std; Point::Point() //default constructor { x=0; y=0; } Point::Point( double xval, double yval) //parameterized constructor { x =xval; y = yval; } //accessors double Point::getX() { return x; } double Point::getY() { return y; } //mutators void Point::setX(double xval) { x = xval; } void Point::setY(double yval) { y = yval; } //member functions void Point::print() { cout<<"The point is ("<