using System;
public class Program
{
public static void Main()
//in this exercise you need use a for loop to help calculate the average of the numbers in an array
//this is the array of numbers you need to average
int[] myScores = new int[] {87, 43, 56, 89, 76, 23, 45, 67, 87, 100, 45, 43, 89, 78, 99, 9, 94, 87, 89, 91 };
//declare a variables for:
// 1. a counter
// 2. to keep track of the sum of the numbers
// 3. to store the calculated average (use double)
//write a for loop to loop through the array and calculate the sum of the numbers
//calculate the average and store it in your variable
// tip - you must convert your sum (int) to double before dividing
//display the average using Console.WriteLine(string) and format the output the average to two decimal placee
// tip - you can use the format string "F2"
}