2.15 两点间距离
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2.15 两点间距离相关的知识,希望对你有一定的参考价值。
import java.util.Scanner;
public class Jisuanjl{
public static void main(String[] args){
Scanner input=new Scanner(System.in);
System.out.print("Enter x1 and y1:");
double x1=input.nextDouble();
double y1=input.nextDouble();
Scanner input1=new Scanner(System.in);
System.out.print("Enter x2 and y2:");
double x2=input1.nextDouble();
double y2=input1.nextDouble();
double l=Math.sqrt(Math.pow((x2-x1),2)+Math.pow((y2-y1),2));
System.out.println("The distance between the two point is "+l);
}
}
以上是关于2.15 两点间距离的主要内容,如果未能解决你的问题,请参考以下文章