public static void Main()
int[] numbers = {3,1,4,1,5,9};
Console.WriteLine("The 3rd element of the array is {0}",numbers[2]);
Console.WriteLine("The length of the array is {0}",numbers.Length);
Console.WriteLine("The upper bound of the array is {0}", numbers.GetUpperBound(0));
Console.WriteLine("The 3rd element of the array is {0}",numbers[2]);
string[] strings = {"January","February","March","April","May","June","July","August","September","October","November","December"};
Console.WriteLine("Type a number ranging from 1 to 12");
string strMonth = Console.ReadLine();
int intMonth = int.Parse(strMonth);
Console.WriteLine("The month corresponding to your number is {0}",strings[intMonth-1]);