Best practices
package models;
public class Point {
private double x;
private double y;
// constructor having both parameters
// distance(Point dest) - distance from current point to the dest point
// toString
How can I write this code? I am a beginner and need to write a constructor and a class implementation.
lang-java