-2
私は2つの点の距離を見つけるために、コードにこれを入れるにはどうすればよいJavaコード:2ポイント
の間の距離を計算するには、次の式を使用したいとの距離。
public class Point
{
public int x; // the x coordinate
public int y; // the y coordinate
public Point (int x, int y)
{
this.x=x;
this.y=y;
}
public static double distance (Point p1, Point p2)
{
// to do
return 0.0;
}
public String toString()
{
return "("+x+","+y+")";
}
}