我只写了类,但中间的一点都不会,公式知道,谢谢
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();就这里不是很明白而已