public static void Main()
string[,] seat = new string[4,9];
seat[0,0] = "Chandler, Zoom";
seat[0,5] = "Connor, Zoom";
seat[0,6] = "Regan, Zoom";
for (int row = 0 ; row <= seat.GetUpperBound(1); row++)
Console.Write("{0,15}", row+1);
for (int col = 0 ; col <= seat.GetUpperBound(0); col++)
Console.Write("{0}: ", col+1);
for (int row = 0 ; row <= seat.GetUpperBound(1); row++)
string student = seat[col,row];
Console.Write("{0,15}", student);
if (student.Contains("Zoom"))
Console.WriteLine("There are {0} seats in the class.", NumSeats);
Console.WriteLine("There are {0} students in the class today.", NumStudents);
Console.WriteLine("There are {0} students attending class through zoom.", NumZoom);