public static void Main()
int[] FPi = new int[] {3,1,4,1,5,9};
Console.WriteLine("The third element of the array is " +FPi[2]);
Console.WriteLine("The length of the array is " +FPi.Length);
Console.WriteLine("The upper bound of the array is " +FPi.GetUpperBound(0));
Console.WriteLine("The sorted third element of the array is " +FPi[2]);
string[] Months = new string[12];
Console.WriteLine("Please enter a number between 1 and 12");
string Number = Console.ReadLine();
int iMonth = int.Parse(Number);
Console.WriteLine("The corresponding month is " +Months [iMonth -1]);