码迷,mamicode.com
首页 > 其他好文 > 详细

两点之间的距离1636050052王智霞

时间:2017-09-18 13:29:49      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:system   []   util   分享   images   class   log   new   inpu   

import java.util.Scanner;

public class Distance

{     

   public static void main(String[] args)  

    {  

       double a;   

      Scanner input =new Scanner(System.in);   

      System.out.print("Enter x1 and y1:");

        double x1=input.nextDouble();   

      double y1=input.nextDouble();   

      System.out.print("Enter x2 and y2:");

        double x2=input.nextDouble();   

      double y2=input.nextDouble();

        a=(x2-x1)*(x2-x1)+(y2-y1)*(y2-y1);   

      System.out.println("The distance between the two points is:"+Math.pow(a,0.5));

     }

}技术分享

两点之间的距离1636050052王智霞

标签:system   []   util   分享   images   class   log   new   inpu   

原文地址:http://www.cnblogs.com/jasonzj/p/7531769.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!