定义一个Point类,由于描述平面上的一个点。 请将程序补充完整,并在电脑上编辑、运行该程序。 public class Point { int x; int y; public Point() { this(0,0); } public Point(int x,int y) { this.x=x; this.y=y; } public double distance(Point p) { double d; d= 【1】 ; //计算平面上两点间的距离 【2】 ; //返回距离值 } public static void main(String[] args) { // TODO Auto-generated method stub Point p1=new Point(); 【3】 ; //创建对象p2,表示平面上的点(3,7) double dist; dist= 【4】 ; //求p1和p2之间的距离 System.out.println("距离为:"+dist); } } 该程序的运行结果为,dist= 【5】 //写出程序计算出的dist的数值