using System;
public class Program
{
public static void Main()
/***************************
* Practice: Array*
***************************/
//1. Declare and initialize an array to store the titles of 3 books
//[Code]
//2. Print out the Length
Console.WriteLine("=====================");
//3. Print out the upper bound
//4. Fill the first 3 spots with the following titles from the NYT Best Sellers list
// "The Girl Who Takes an Eye for an Eye"
// "A Column of Fire"
// "Enemy of the State"
//5. Use Console.WriteLine(string) to output these 3 books
//6. Sort the Array
//Separate outputs
//7. Use Console.WriteLine(string) to output these 3 books
}