4.写一个Point类,计算两个Point实例之间的距离.求java程序、
2个回答
展开全部
class Point{
public Point(int x,int y)
{
this.x = x;
this.y = y;
}
private int x;
private int y;
public float compute(Point p)
{
return Math.sqrt((p.x-this.x)^2-(p.y-this.y)^2);
}
}
距离 = new Point(3,4).compute(new Point(6,8)) = 5
public Point(int x,int y)
{
this.x = x;
this.y = y;
}
private int x;
private int y;
public float compute(Point p)
{
return Math.sqrt((p.x-this.x)^2-(p.y-this.y)^2);
}
}
距离 = new Point(3,4).compute(new Point(6,8)) = 5
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
class Point{
private int x;
private int y;
public Point(int x,int y){
this.x = x;
this.y = y;
}
public double distance(Point p){
return Math.sqrt(Math.pow(p.x-this.x, 2)+Math.pow(p.y-this.y, 2));
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询