public static void Main()
Console.WriteLine("Store number #1, what’s your price?");
double price = double.Parse(Console.ReadLine());
for (int i = 2; i<=5; i++)
Console.WriteLine("Store number #{0}, what’s your price?", i);
price = double.Parse(Console.ReadLine());
Console.WriteLine("The min price is {0} of store number {1} ", minPrice, store);