public static void Main()
int[] pi = {3,1,4,1,5,9};
Console.WriteLine("The 3rd element of the array is: " + pi[2]);
Console.WriteLine("The length of the array is: " + pi.Length);
Console.WriteLine("The upper bound of the array is: " + pi.GetUpperBound(0));
Console.WriteLine("The 3rd element after sourt is: " + pi[2]);
string[] month = {"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"};
Console.WriteLine("Please type in your number. (from 1 - 12)");
int iNumber = Convert.ToInt32(Console.ReadLine()) - 1;
Console.WriteLine(month[iNumber]);