java创建一个Point类,包含坐标x、y。然后创建一个MyPoint类,定义两个读写属性start和end, 10
数据类型为Point。MyPoint类方法calc:计算start和end之间的距离并打印出来start和end坐标以及距离信息。...
数据类型为Point。MyPoint类方法 calc:计算start和end之间的距离并打印出来start和end坐标以及距离信息。
展开
2个回答
2014-06-13
展开全部
class Point{
int x, y;
}
class MyPoint{
Point start, end;
public MyPoint(Point start, Point end){
this.start=start;
this.end=end;
}
double calc(){
return start.x-end.x+start.y-end;//其实使用三角函数计算。。。http://zhidao.baidu.com/question/918415034931906699
}
}
int x, y;
}
class MyPoint{
Point start, end;
public MyPoint(Point start, Point end){
this.start=start;
this.end=end;
}
double calc(){
return start.x-end.x+start.y-end;//其实使用三角函数计算。。。http://zhidao.baidu.com/question/918415034931906699
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询