CS 166 01 Final Project
CS 166 01
Final Project
100 Points
Name ____________________________________
Due: Tuesday, December 11, 2018 at 8:00am
If not turned in by 8:15, 20 point reduction
If not turned in by 10:00, 50 point reduction
If not turned in by 1:00pm, 0
Write a Java program that can be used to assign seats for a commercial airplane. Use Final Project as the folder name. The airplane has 13 rows, with 6 seats in each row. Rows 1 and 2 are first class, rows 3 to 7 are business class and rows 8 to 13 are economy class. Your program prompts the user to enter the following information:
1. Purchase or Cancel
2. Ticket type (first class, business class, or economy class)
3. Desired seat or seat to cancel
4. Exit the System
Output the seating plan in the following format:
A B C D E F
Row 1 * * X * X X
Row 2 * X * X * X
Row 3 * * X X * X
Row 4 X * X * X X
Row 5 * X * X * *
Row 6 * X * * * X
Row 7 X * * * X X
Row 8 * X * X X *
Row 9 X * X X * X
Row 10 * X * X X X
Row 11 * * X * X *
Row 12 * * X X * X
Row 13 * * * * X *
Here * indicates that the seat is available; X indicates that the seat has been assigned. Make this a menu-driven program; show the user’s choices and allow the user to make the appropriate choices. Here are the choices:
· Purchase a Ticket
· Cancel a Ticket
· Display Seating Plan
· Exit
What is required:
· Methods must be used for the menu and each of the menu choices except for Exit.
· Be sure that the person enters a seat that matches the type of ticket they specify.
Add the following comments to the top of your source code:
Name
Class and Section (CS 166 01)
Assignment (Final Project)
Due Date: (see above)
Description of the program
What to turn in
1. Turn in this sheet with your name on it.
2. Copy the Final Project folder into your folder in the I:\kopp\inbox\CS 166 01 folder.
Extra Credit: 10 Points