private double GetDistance(int A_x,int A_y,int B_x,int B_y)
        {
            int x=System.Math.Abs(B_x   -   A_x );
            int y=System.Math.Abs(B_y   -   A_y );
            return Math.Sqrt(x*x+y*y);
        }

相关文章:

  • 2021-11-21
  • 2022-01-13
  • 2021-12-13
  • 2021-07-20
  • 2022-01-01
  • 2021-12-14
  • 2022-12-23
  • 2021-12-21
猜你喜欢
  • 2022-01-30
  • 2021-11-24
  • 2022-01-11
  • 2022-02-17
  • 2021-07-15
  • 2022-02-16
相关资源
相似解决方案