public static void Main()
string[] titles = {"ABC Basic","The Red Hat","Robinhood","James Moriarty"};
double[] prices = {22.5, 18.3, 20, 25.25};
Console.Write("Input book title to search: ");
string title = Console.ReadLine();
for(int i = 0; i < titles.Length; i++)
Console.Write("The price of {0} is ${1:n}",titles[i],prices[i]);
Console.Write("Book not found......");