public static void Main()
int [] thisArray = {10, 99, 55, 33, 22, 16, 18};
foreach (int element in thisArray)
dblSum = dblSum + element;
dblAverage = dblSum/(thisArray.Length);
Console.WriteLine("The average of the array is: " + dblAverage);
for (int i = 0; i < thisArray.Length; i++)
Console.WriteLine("The minimum is: " + iMin);
Console.WriteLine("=================================================");
for (int w = 1; w <= 10; w++)