2.15

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2.15相关的知识,希望对你有一定的参考价值。

import java.util.Scanner;
public computerfile{
    public static void main(String[] args) {
        Scanner input = new Scanner(System.in);
        System.out.print("Enter x1 and y1: ");
        System.out.print("Enter x2 and y2: ");
        double b=input.nextDouble();
        double d=input.nextDouble();
        double a=input.nextDouble();
        double c=input.nextDouble();
                
        double  y= (b-a)*(b-a)+(d-c)*(d-c);
        double distance = Math.pow(y, 0.5);
        System.out.print("The distance the two points is " + distance);
    }
}

以上是关于2.15的主要内容,如果未能解决你的问题,请参考以下文章

2.15

2.15

2.15

2.15

Dart 2.15 现已发布

2.15 两点间距离