中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

怎么用java求任意兩點之間的距離

小億
115
2023-11-14 22:47:43
欄目: 編程語言

要使用Java求任意兩點之間的距離,可以使用以下步驟:

  1. 創建一個名為Point的類,該類表示一個點。該類應該包含xy兩個屬性,并提供相應的getter和setter方法。
public class Point {
    private double x;
    private double y;

    public Point(double x, double y) {
        this.x = x;
        this.y = y;
    }

    public double getX() {
        return x;
    }

    public void setX(double x) {
        this.x = x;
    }

    public double getY() {
        return y;
    }

    public void setY(double y) {
        this.y = y;
    }
}
  1. 創建一個名為DistanceCalculator的類,該類包含一個靜態方法calculateDistance,用于計算兩點之間的距離。該方法接受兩個Point對象作為參數,并返回一個double類型的距離值。
public class DistanceCalculator {
    public static double calculateDistance(Point point1, Point point2) {
        double xDiff = point2.getX() - point1.getX();
        double yDiff = point2.getY() - point1.getY();
        return Math.sqrt(xDiff * xDiff + yDiff * yDiff);
    }
}
  1. 在主程序中,創建兩個Point對象,然后調用DistanceCalculator的靜態方法來計算它們之間的距離。
public class Main {
    public static void main(String[] args) {
        Point point1 = new Point(1, 2);
        Point point2 = new Point(3, 4);

        double distance = DistanceCalculator.calculateDistance(point1, point2);
        System.out.println("Distance between point1 and point2: " + distance);
    }
}

上述代碼將輸出"Distance between point1 and point2: 2.8284271247461903",表示兩點之間的距離為2.8284271247461903。

0
历史| 响水县| 黑山县| 错那县| 合肥市| 宜宾市| 灌阳县| 米泉市| 海淀区| 临沭县| 东乌| 宝兴县| 长子县| 浪卡子县| 临夏县| 昌都县| 达日县| 和顺县| 罗山县| 从江县| 肇州县| 旺苍县| 永吉县| 广德县| 大悟县| 东源县| 武隆县| 儋州市| 化州市| 连州市| 怀宁县| 太谷县| 安塞县| 沁阳市| 馆陶县| 松桃| 兴山县| 枞阳县| 密云县| 若尔盖县| 京山县|