(1) 数据成员: 表示横、纵坐标的字段x,y;
(2) 方法成员:
a、无参数的构造方法,将x,y赋值为0。
b、带两个整型参数的构造方法,分别为字段x,y赋值。
c、在屏幕上显示坐标值的方法show()。
在主方法中创建两个点对象,使以上两个构造方法均被执行,并在屏幕上显示这两个点对象的坐标值,求出平面坐标系中这两点间的距离。(数学函数sqrt()表示开根号,pow()求平方)。
不知道如何入手
public class Point
{
private int x;
private int y;
public Point()
{
x=0;
y=0;
}
public Point(int a,int b)
{
x=a;
y=b;
}
public void Display()
{
Console.Write("横坐标:{0}--纵坐标:{1}",x,y);
}
static void Main()
{
Point p1=new Point();
Point p2=new Point(1,2);
p1.Display();
Console.WriteLine("\n");
p2.Display();
double x=0.00;
x=System.Math.Sqrt(System.Math.Pow((p1.x-p2.x),2)+System.Math.Pow((p1.y-p2.y),2));
Console.Write("\n两点间的距离为:{0}",x);
Console.ReadLine();
}
}