public static void Main()
double[] arr = {12,-23432, .32,10, 500, 500,-56};
double? a,b,c = Double.MinValue;
int arrLength = arr.Length;
for (int i = 0;i<arr.Length;i++){
Console.WriteLine((arr.Length<3)?"There are only "+arrLength+" numbers.":"The third lowest number is " + c.ToString()+".");