阅读量:0
在Java中,可以使用以下公式来计算两点之间的距离:
import java.lang.Math; public class DistanceCalculator { public static double calculateDistance(double x1, double y1, double x2, double y2) { double distance; distance = Math.sqrt(Math.pow((x2 - x1), 2) + Math.pow((y2 - y1), 2)); return distance; } public static void main(String[] args) { double x1 = 1, y1 = 2; double x2 = 3, y2 = 4; double distance = calculateDistance(x1, y1, x2, y2); System.out.println("The distance between the two points is: " + distance); } }
在上述示例中,我们定义了一个名为DistanceCalculator
的类,其中包含了一个静态方法calculateDistance
,该方法接受四个参数:两个点的x和y坐标。方法内部使用了欧几里得距离公式来计算两点之间的距离。在main
方法中,我们定义了两个点的坐标,并调用calculateDistance
方法计算它们之间的距离。最后,我们将结果打印到控制台。