public static void Main()
Console.WriteLine("Seating Assignments:");
string[,] Seats = new string[numRows, numCols];
Seats[0,6] = "Chelsea,J";
Seats[2,4] = "Jillian,S";
Seats[3,5] = "Mairead, R";
Seats[4,2] = "Camden, R";
Seats[4,3] = "Spencer, S";
int[] yearArr = new int[4] {0, 0, 0, 0};
for (int i = 0; i < numRows; i++)
for (int j = 0; j < numCols; j++)
string Seat = Seats[i,j];
string[] word = Seat.Split(',');
Console.Write(Seat + "|");
Console.WriteLine("There are {0} students present.", present);
Console.WriteLine(" Freshman: {0} ({1:P1})", yearArr[0], yearArr[0]*1.0/present);
Console.WriteLine(" Sophomore: {0} ({1:P1})", yearArr[1], yearArr[1]*1.0/present);
Console.WriteLine(" Junior: {0} ({1:P1})", yearArr[2], yearArr[2]*1.0/present);
Console.WriteLine(" Senior: {0} ({1:P1})", yearArr[3], yearArr[3]*1.0/present);