public static void Main()
Console.WriteLine("Seating Assignments:");
string[][] Seats = new string[numRows][];
Seats[0] = new string[] {"Sahil,R", "Charlie,R", "William,R", "Jerry,J"};
Seats[1] = new string[] {"Andrew,R", "", "Scott,J", "", "Rachel,R", ""};
Seats[2] = new string[] {"", "", "Cindy,F", "", ""};
Seats[3] = new string[] {"Jack,R", "", "", "", "", ""};
Seats[4] = new string[] {"Placeholder,S","Placeholder,S","Placeholder,S","Placeholder,S"};
Seats[5] = new string[] {"Placeholder,S","Placeholder,S","Placeholder,S","Placeholder,S"};
Seats[6] = new string[] {"Placeholder,S","Placeholder,S","Placeholder,S","Placeholder,S"};
Seats[7] = new string[] {"Placeholder,S","Placeholder,S","Placeholder,S","Placeholder,S"};
foreach (string[] Row in Seats)
foreach (string Seat in Row)
string[] word = Seat.Split(',');
Console.WriteLine("Name = {0}, Year = {1}", name, year);
if (Seat != "") numStudent++;
Console.WriteLine("| " + Seat.PadRight(14));
Console.WriteLine("There are {0} students present.", numStudent);
Console.WriteLine(" Freshman: {0} ({1:P1})", numFreshman, numFreshman * 1.00 / numStudent);
Console.WriteLine(" Sophomore: {0} ({1:P1})", numSophomore, numSophomore * 1.00 / numStudent);
Console.WriteLine(" Junior: {0} ({1:P1})", numJunior, numJunior * 1.00 / numStudent);
Console.WriteLine(" Senior: {0} ({1:P1})", numSenior, numSenior * 1.00 / numStudent);