定义二维坐标系中的点类(Point)
定义二维坐标系中的点类(Point)要求:1)点包括横、纵坐标(浮点数类型);2)创建对象时如不指定坐标初值,则横、纵坐标均为0;3)以“横坐标,纵坐标”形式输出点;4)...
定义二维坐标系中的点类(Point)
要求:1)点包括横、纵坐标(浮点数类型);
2)创建对象时如不指定坐标初值,则横、纵坐标均为0;
3)以“横坐标,纵坐标”形式输出点;
4)求两点间距离的方法;
5)横、纵坐标都加某个给定的浮点数。 展开
要求:1)点包括横、纵坐标(浮点数类型);
2)创建对象时如不指定坐标初值,则横、纵坐标均为0;
3)以“横坐标,纵坐标”形式输出点;
4)求两点间距离的方法;
5)横、纵坐标都加某个给定的浮点数。 展开
1个回答
展开全部
public class point{
private float x;
private float y;
public point(){
this.x=0.0;
this.y=0.0;
}
public void point(float x,float y){
this.x=x;
this.y=y;
}
public void printPoint(){
System.out.println(this.x+","+this.y);
}
public float getDistance(Point anotherPoint){
return Math.sqrt((anotherPoint.x-this.x)*(anotherPoint.x-this.x)+(anotherPoint.y-this.y)*(anotherPoint.y-this.y));
}
public void addValue(float val){
this.x+=val;
this.y+=val;
}
}
private float x;
private float y;
public point(){
this.x=0.0;
this.y=0.0;
}
public void point(float x,float y){
this.x=x;
this.y=y;
}
public void printPoint(){
System.out.println(this.x+","+this.y);
}
public float getDistance(Point anotherPoint){
return Math.sqrt((anotherPoint.x-this.x)*(anotherPoint.x-this.x)+(anotherPoint.y-this.y)*(anotherPoint.y-this.y));
}
public void addValue(float val){
this.x+=val;
this.y+=val;
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询