java问题 定义一个Point点类 10

定义一个Point点类,成员变量有x,y,成员函数set()设置x,y的值,get()获取x,y的值,并定义一个点对象调用set()和get(),并定义一个点对象调用se... 定义一个Point点类,成员变量有x,y,成员函数set()设置x,y的值,get()获取x,y的值,并定义一个点对象调用set()和get(),并定义一个点对象调用set()和get()构造方法重载,distance()表示2点间的距离。 展开
 我来答
a2040605
推荐于2017-11-25 · TA获得超过337个赞
知道小有建树答主
回答量:194
采纳率:100%
帮助的人:130万
展开全部
public class Point {

    private int x;
    private int y;

    public Point(int x, int y) {
        this.x = x;
        this.y = y;
    }

    public int getX() {
        return x;
    }

    public void setX(int x) {
        this.x = x;
    }

    public int getY() {
        return y;
    }

    public void setY(int y) {
        this.y = y;
    }
    
    public double distance(Point p1,Point p2){
        return Math.sqrt((p2.getX()-p2.getX())*(p2.getX()-p2.getX())+(p2.getY()-p1.getY())*(p2.getY()-p1.getY()));
    }
    
    public static void main(String args[]){
        Point p1 = new Point(14,17);
        Point p2 = new Point(23,90);
        double s = p1.distance(p1,p2);
        System.out.println("2点之间的距离为:"+s);
    }
}
匿名用户
2020-04-19
展开全部
package test1;

public class Point {
private int x;
private int y;

public Point(int x, int y) {
this.x = x;
this.y = y;
}

public int getX() {
return x; }

public void setX(int x) {
this.x = x; }

public int getY() {
return y; }

public void setY(int y) {
this.y = y; }

public double distance(Point p1, Point p2){
return Math.sqrt((p2.getX()-p1.getX())*(p2.getX()-p1.getX())+(p2.getY()-p1.getY())*(p2.getY()-p1.getY()));
}

public void displayPoint (int x, int y){
System.out.println("x:"+x+",y:"+y);
}

public static void main(String args[]){
Point p1 = new Point(10,20);
Point p2 = new Point(35,25);
Point a1=new displaypoint(10,20);
a2= new displaypoint(35,25);
double s = p1.distance(p1,p2);

System.out.println("2点之间的距离为:"+s);
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
在天柱山敲代码的暖月
2014-03-17 · TA获得超过125个赞
知道小有建树答主
回答量:109
采纳率:0%
帮助的人:124万
展开全部
public class Point {

private float x,y;

public Point(float x,float y){

this.x=x;

this.y=y;

}

public float getX() {

return x;

}

public void setX(float x) {

this.x = x;

}

public float getY() {

return y;

}

public void setY(float y) {

this.y = y;

}

public double distance(Point p){

return Math.sqrt((p.getX()-x)*(p.getX()-x)+(p.getY()-y)*(p.getY()-y));

}

}
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式