public static void Main()
float[] score = new float[7];
for (int i = 0; i < score.Length; i++)
Console.WriteLine("Enter the score from Judge #" + (i + 1) + ":");
score[i] = float.Parse((Console.ReadLine()));
total = ((total + score[i]));
Console.WriteLine("The average of the score gathered from the judges is: " + avg + ".");
Console.WriteLine("Would you like to find another score average? y/n");
vAnswer = Console.ReadLine();
Console.WriteLine("Program ended");