您好,登錄后才能下訂單哦!
這篇文章主要介紹java如何實現坐標距離,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
package testmypoint; class MyPoint{ private double x; private double y; public MyPoint()//默認值 { x=0; y=0; } public MyPoint(double x,double y) { this.x=x; this.y=y; } public double distance(MyPoint m)//給一個點 { double a=Math.sqrt((this.x-m.x)*(this.x-m.x)+(this.y-m.y)*(this.y-m.y)); return a; } public double distance(double x,double y)//給出坐標 { double a=Math.sqrt((this.x-x)*(this.x-x)+(this.y-y)*(this.y-y)); return a; } } public class TestMyPoint //測試類((10,30.5)到(0,0)的距離) { public static void main(String[] args) { MyPoint a1=new MyPoint(); MyPoint a2=new MyPoint(10,30.5); System.out.printf("%.2f\n",a1.distance(a2)); System.out.printf("%.2f\n",a1.distance(10, 30.5)); } }
以上是“java如何實現坐標距離”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。