public static void Main()
Console.WriteLine("Seating Assignments");
string[,] Seat = new string[4,9];
Seat[0,0] = "Chadler,Zoom";
Seat[0,5] = "Connor,Zoom";
Seat[0,6] = "Regan,Zoom";
for (int row=0; row <= Seat.GetUpperBound(1); row++)
Console.Write("{0,12}", row);
for (int col=0; col <= Seat.GetUpperBound(0); col++)
Console.Write("{0}: ", col);
for (int row=0; row <= Seat.GetUpperBound(1); row++)
Console.Write("{0,12}", Seat[col, row]);
if (Seat[col, row] != "") NumStudents++;
Console.WriteLine("There are {0} seats in the classroom.", NumSeats);
Console.WriteLine("There are {0} students in class today.", NumStudents);