please answer in java language
If you have any problem with the code feel free to comment. Program class CartesianPoint { t// instance variables tprivate float x, y; t// parameterized constructor tpublic CartesianPoint(float x, float y) { ttthis.x = x; ttthis.y = y; t} t// default costructor tpublic CartesianPoint() { ttx = 0; tty = 0; t} t// find distance between two points tpublic double distanceFr ... See the full answer