定义一个点(point)类表示二维空间的点(x,y)
定义一个点(point)类表示二维空间的点(x,y)
-有具体坐标对象point
-提供可以设置两个点的坐标方法
-有可以计算点坐标距离的方法
public class Point {
int x,y;
public void pit(int a,int b){
x = a;
y = b;
}
public double pint(Point c){
return Math.sqrt((c.x-x)*(c.x-x
原创
2022-04-17 23:45:39 ·
5314 阅读 ·
0 评论