我是 Java 新手。
如何将具有坐标(例如(x,y))的项目列表分配给数组并计算每个项目之间的距离?
如果有人可以提供帮助,将不胜感激!
我是 Java 新手。
如何将具有坐标(例如(x,y))的项目列表分配给数组并计算每个项目之间的距离?
如果有人可以提供帮助,将不胜感激!
你试过什么?如果您实际发布您编写的代码并付出一些努力,您会在这里做得更好。
从一个开始Point
:
public class Point {
private final double x;
private final double y;
public Point(x, y) {
this.x = x;
this.y = y;
}
public static double distance(Point a, Point b) {
double dx = a.x - b.x;
double dy = a.y - b.y;
return Math.sqrt(dx*dx + dy*dy);
}
}