帮忙呀用C#写程序:定义一个点类,点包含x,y, z坐标三个字段
帮忙呀用C#写程序:定义一个点类,点包含x,y, z坐标三个字段
public class Point
{
int x,y,z;
public int X
{
get{return x};
set{x = value};
}
public int Y
{
get{return y};
set{y = value};
}
public int Z
{
get{return z};
set{z = value};
}
}