java练习---5
Posted Mr、L
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java练习---5相关的知识,希望对你有一定的参考价值。
//程序员:罗元昊 2017.9.17
package demo;
import java.util.Scanner;
public class Ly {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.print("输入x1和y1:");
double x1 =input.nextDouble();
double y1 =input.nextDouble();
System.out.print("输入x2和y2:");
double x2 =input.nextDouble();
double y2 =input.nextDouble();
double x =Math.pow((x2 - x1),2);
double y =Math.pow((y2 - y1),2);
System.out.println("两个点之间的距离是:"+ Math.pow((x+y),0.5));
}
}
以上是关于java练习---5的主要内容,如果未能解决你的问题,请参考以下文章