Browse Source

spacing adjustment

bmallred 12 years ago
parent
commit
7cfa8fac6d
1 changed files with 6 additions and 2 deletions
  1. 6 2
      EuclideanDistance/Main.cs

+ 6 - 2
EuclideanDistance/Main.cs

@ -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>