我有以下结构: -
public struct Cordination
{
public int A;
public int B;
public Cordination(int a, int b)
{
A = a;
B = b;
}
}
然后我需要计算任意两个地方之间的距离,所以我需要遍历结构并减去每个地方的 x 轴和 y 轴以获得结构中任意两个地方之间的距离,然后返回最短距离;但我不确定我该怎么做:-
public float distanceInMeter(Cordination[] cordination)
{
for (i //codes goes here...)
}