查找所有点之间的距离

时间:2019-11-04 00:19:47

标签: java arrays

我必须将X和Y设置为7点。然后计算它们之间的距离。然后写一个计算点之间距离的公式。

我只想知道我是否朝着正确的方向前进?还是需要改变? 我会很高兴您的建议。

我的整个代码在这里:https://pastebin.com/wdmrVfEY

这是我的代码的一部分:

public class Point {

public static Scanner input = new Scanner(System.in);
public static final int A = 7; // stroka
public static final int B = 2; // stolb

public static void main(String[] args) {

    System.out.println("Number of Points: "+ A); //stroki w masive
    System.out.println("Points: A, B, C, D, E, F, G.");
    int[][] arraySize = new int[A][B];

    // Point A
    System.out.println("Provide X for Point A:");
    arraySize[0][0] = input.nextInt();
    int xA = arraySize[0][0];
    System.out.println("Provide Y for Point A:");
    arraySize[0][1] = input.nextInt();
    int yA = arraySize[0][1];

0 个答案:

没有答案