Write a program that assigns seats on an airplane as described in Exercise P12.6 . Keep the
Question:
Write a program that assigns seats on an airplane as described in Exercise P12.6 .
Keep the seating information in a database.
Data from exercise P12.6 Airline seating. Write a program that assigns seats on an airplane. Assume the airplane has 20 seats in first class (5 rows of 4 seats each, separated by an aisle) and 90 seats in economy class (15 rows of 6 seats each, separated by an aisle). Your pro gram should take three commands: add passengers, show seating, and quit. When passengers are added, ask for the class (first or economy), the number of passengers traveling together (1 or 2 in first class; 1 to 3 in economy), and the seating prefer ence (aisle or window in first class; aisle, center, or window in economy). Then try to find a match and assign the seats. If no match exists, print a message. Your solu tion should include a class Airplane that is not coupled with the Scanner or PrintStream classes. Follow the design process that was described in this chapter.
Step by Step Answer: