这道Java题怎么做?

定义一个”点“(Point)类用来表示三维空间中的点(有三个坐标)。要求如下:1.     可以生成具有特定坐标的点对象... 定义一个”点“(Point)类用来表示三维空间中的点(有三个坐标)。要求如下:

1.     可以生成具有特定坐标的点对象

2.     提供可以设置三个坐标的方法

3.     提供可以计算该”点(1,2,3)“距另外点(5,0,0)距离的平方的方法

4.     编写程序验证上述三条
展开
 我来答
testingzmf
2020-04-08
知道答主
回答量:6
采纳率:0%
帮助的人:1.9万
展开全部
首先定义Point类
public class Point {
private int x;
private int y;
private int z;

//无参构造
public Point(){}
//带参数的构造函数,用于初始化坐标
public Point(int x, int y, int z) {
this.x = x;
this.y = y;
this.z = z;
}

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 int getZ() {
return z;
}

public void setZ(int z) {
this.z = z;
}
}
编写Main方法,执行,验证
import java.lang.Math;
public class Main {
public static double distancePOW(Point p1,Point p2)
{
return Math.pow(p1.getX()-p2.getX(),2)+Math.pow(p1.getY()-p2.getY(),2)+Math.pow(p1.getZ()-p2.getZ(),2);
}
public static void main(String[] args){
Point point1 = new Point(1,2,3);
Point point2 = new Point(5,0,0);
double distancePOW = distancePOW(point1,point2);
System.out.println("两个三维坐标点之间的距离的平方为"+distancePOW);
}
}
输出结果:两个三维坐标点之间的距离的平方为29.0
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式