定义二维坐标系中的点类(Point)

定义二维坐标系中的点类(Point)要求:1)点包括横、纵坐标(浮点数类型);2)创建对象时如不指定坐标初值,则横、纵坐标均为0;3)以“横坐标,纵坐标”形式输出点;4)... 定义二维坐标系中的点类(Point)
要求:1)点包括横、纵坐标(浮点数类型);
2)创建对象时如不指定坐标初值,则横、纵坐标均为0;
3)以“横坐标,纵坐标”形式输出点;
4)求两点间距离的方法;
5)横、纵坐标都加某个给定的浮点数。
展开
 我来答
帐号已注销
推荐于2016-08-08 · TA获得超过335个赞
知道小有建树答主
回答量:427
采纳率:0%
帮助的人:363万
展开全部
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;
}
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式