#include #include "Circle.h" #include "Point.h" using namespace std; int main() { Point p1, p2(3, 4); cout << "The distance between the points: "; p1.printCoordinates(); cout << "and "; p2.printCoordinates(); cout << "is " << p1.distance(p2) << endl; Circle c(p2, 3); c.print(); Point p3(0, 4); bool inCircle = c.inArea(p3); cout << "The point "; p3.printCoordinates(); cout << (inCircle ? "belongs to the circle area." : "does NOT belong to the circle area.") << endl; return 0; }