|
@ -28,8 +28,12 @@ namespace EuclideanDistance
|
28
|
28
|
|
29
|
29
|
// Display both the closest and furthest data points from the focal point.
|
30
|
30
|
Console.WriteLine();
|
31
|
|
Console.WriteLine("Minimum distance: {0}", points.ElementAt(distances.IndexOf(distances.Min())).ToPoint());
|
32
|
|
Console.WriteLine("Maximum distance: {0}", points.ElementAt(distances.IndexOf(distances.Max())).ToPoint());
|
|
31
|
Console.WriteLine(
|
|
32
|
"Minimum distance: {0}",
|
|
33
|
points.ElementAt(distances.IndexOf(distances.Min())).ToPoint());
|
|
34
|
Console.WriteLine(
|
|
35
|
"Maximum distance: {0}",
|
|
36
|
points.ElementAt(distances.IndexOf(distances.Max())).ToPoint());
|
33
|
37
|
}
|
34
|
38
|
|
35
|
39
|
/// <summary>
|