/* * Class to hold an array of Seats to mimic a movie theatre. * * Carsten Butz, September 2002 */ class Theatre{ private Seat[][] theatre; /* Constructors */ Theatre(int numRows, int numSeats){ /* Theatre constructor makes a new movie theatre with numRows rows and numSeats * seats (chairs) in each row. All seats are unreserved (unoccupied) in the beginning. */ /* Konstruktoren Theater laver en ny biografsal med numRows rækker og numSeats * stole i hver række. Alle sæder skal være ureserverede i begyndelsen. */ theatre = new Seat[numRows][numSeats]; for(int row = 0; row =0; row--) { System.out.print((row+1) + "\t"); for(int j = 0; j