2016-07-21 8 views
-2

私は2つの点の距離を見つけるために、コードにこれを入れるにはどうすればよいJavaコード:2ポイント

enter image description here

の間の距離を計算するには、次の式を使用したいとの距離。

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+")"; 
    } 

} 

答えて

3

この

public static double distance (Point p1, Point p2) 
{ 
    double dist = Math.sqrt(Math.pow(p1.x - p2.x, 2.0) + Math.pow(p1.y - p2.y, 2.0)); 
    return dist; 
} 
を使用します