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

2.15

时间:2017-09-18 13:20:39      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:ati   str   distance   class   string   main   input   point   poi   

import java.util.Scanner; public class Demo_1{ public static void main(String[] args) { Scanner input = new Scanner(System.in); System.out.print("输入 x1 和y1: "); System.out.print("输入 x2 和 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

标签:ati   str   distance   class   string   main   input   point   poi   

原文地址:http://www.cnblogs.com/jingjing1314/p/7542474.html

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