Answered step by step
Verified Expert Solution
Question
1 Approved Answer
(Note: only use import java.util.Scanner;) Write a Java program, in a file SeatReservation.java, that allows passengers to reserve seats in a small airplane that has
(Note: only use import java.util.Scanner;)
Write a Java program, in a file SeatReservation.java, that allows passengers to reserve seats in a small airplane that has n rows of seats. Each row of the airplane has four seats - A, B, C and D. For example, for n-7, here is the layout of the seating arrangement, with no seats reserved Row 1 2 A B C D 4 5 6 7 A seat can be selected by entering its row number and column letter (on one line with one space between them), for example - 2 A, 6 D, etc. When displayed, an "X" should mark seats reserved. You should use a 2D array to store the seating map Write a program that prompts the user for the number of rows, n, and then reads multiple seat reservation requests until the user enters "Q". After all the inputs have been entered, the seat reservation map should be displayed. If the user enters an invalid row number, an invalid column number, or a seat that has already been reserved, that seat reservation requ Your program should work exactly as shown below: est should be simply ignored. How many rows: 7 Enter each seat reservation request, end the input with Q: 1 A 2 B 4 C 11 D 6 FStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started