Home /
Expert Answers /
Computer Science /
assign-passengers-seats-in-an-airplane-assume-a-small-airplane-with-seat-numbering-as-follows-pa430
(Solved): assign passengers seats in an airplane. Assume a small airplane with seat numbering as follows: \( ...
assign passengers seats in an airplane. Assume a small airplane with seat numbering as follows: \( 1 \quad \mathrm{AB} C D \) \( 2 \mathrm{ABCD} \) \( 3 \quad \mathrm{AB} \mathrm{CD} \) \( 4 \quad \mathrm{AB} C D \) 5 AB CD \( 6 \quad \mathrm{AB} \mathrm{CD} \) \( 7 \mathrm{ABCD} \) The program should display the seat pattern, with an \( X \) marking the seats already assigned. For example, after seats \( 1 \mathrm{~A}, 2 \mathrm{~B} \) and \( 4 \mathrm{C} \) are taken, the display should look like this: You are given the following two function prototypes: public static bool AssignSeat ( int a[[4], int \( \mathrm{n} \), int \( \mathrm{m} \) ) public static void PrintSeatsPattern (inta[][4], int \( n \), int \( m \) )