java 基础程序编写 两点之间的距离
答案:3 悬赏:70 手机版
解决时间 2021-03-29 08:58
- 提问者网友:愿为果
- 2021-03-28 21:25
java 基础程序编写 两点之间的距离
最佳答案
- 五星知识达人网友:独钓一江月
- 2021-03-28 21:50
题目是要求写出类Point吗?是的话代码如下:
public class Point{
private int x;
private int y;
public Point(int x,int y){
this.x = x;
this.y = y;
}
public double ppdistance(Point p){
return Math.sqrt(Math.pow(x - p.getX(),2)+Math.pow(y - p.getY(),2));
}
public Point move(int x,int y){
return new Point(this.x + x,this.y + y);
}
public String toString(){
return "("+x+","+y+")";
}
public int getX(){
return x;
}
public int getY(){
return y;
}
}
btw:类名一般是首字母大写。出题人不严谨!
public class Point{
private int x;
private int y;
public Point(int x,int y){
this.x = x;
this.y = y;
}
public double ppdistance(Point p){
return Math.sqrt(Math.pow(x - p.getX(),2)+Math.pow(y - p.getY(),2));
}
public Point move(int x,int y){
return new Point(this.x + x,this.y + y);
}
public String toString(){
return "("+x+","+y+")";
}
public int getX(){
return x;
}
public int getY(){
return y;
}
}
btw:类名一般是首字母大写。出题人不严谨!
全部回答
- 1楼网友:春色三分
- 2021-03-28 22:53
你上面不也是写好了程序吗
- 2楼网友:骨子里都是戏
- 2021-03-28 22:07
是这个意思吗?
private double getDistance(int x1,int y1,int x2,int y2){
return Math.sqrt((x2-x1)*(x2-x1) - (y2-y1)*(y2-y1));
}
private double getDistance(int x1,int y1,int x2,int y2){
return Math.sqrt((x2-x1)*(x2-x1) - (y2-y1)*(y2-y1));
}
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯