Will serve the test driver for the tictactoe class
Display the following alternatives: Please enter 1 for First Class or 2 for Economy. If the user types 1, your app should assign a seat in the first-class section (seats 1–5). If the user types 2, your app should assign a seat in the economy section (seats 6–10).
Use a one-dimensional array of type bool to represent the seating chart of the plane. Initialize all the elements of the array to false to indicate that all the seats are empty. As each seat is assigned, set the corresponding element of the array to true to indicate that the seat is no longer available.
Each of these 3 exercises is implemented as a Console application (.NET Framework) in the zip file template. You also have the option to do any of them as a Windows Forms GUI app if you want to. You would have to delete and recreate the Cs Project in the template solution file.