[solved]-Using C Include Using Namespace Std Int Main Q39020815
Using C++#include <iostream>using namespace std;int main()
…………
11. Write a program to assign passengers seats in an airplane with seat airplane. Assume a small numbering as follows 1 ABC D 2 ABCD 3 A BCD 4 ABCD 5ABCD 6 AB CD 7 AB C D The program should display the seat pattern, with an X marking the seats already assigned. For example, after seats 1A, 2B, and 4C are taken, the display should look like this: 1 X B C D 2 AXCD 3 ABCD 476 CHAPTER 7/ Arrays 4 ABXD SABCD 6 ABCD 7 ABCD After displaying the seats available. the program prompts for the seat desired, the user types in a seat, and then the display of available seats is updated. This continues until all seats are filled or until the user signals that the program should end. If the user types in a seat that is already assigned, the program should say that that seat is occupied and ask for another choice Show transcribed image text 11. Write a program to assign passengers seats in an airplane with seat airplane. Assume a small numbering as follows 1 ABC D 2 ABCD 3 A BCD 4 ABCD 5ABCD 6 AB CD 7 AB C D The program should display the seat pattern, with an X marking the seats already assigned. For example, after seats 1A, 2B, and 4C are taken, the display should look like this: 1 X B C D 2 AXCD 3 ABCD 476 CHAPTER 7/ Arrays 4 ABXD SABCD 6 ABCD 7 ABCD After displaying the seats available. the program prompts for the seat desired, the user types in a seat, and then the display of available seats is updated. This continues until all seats are filled or until the user signals that the program should end. If the user types in a seat that is already assigned, the program should say that that seat is occupied and ask for another choice
Expert Answer
Answer to Using C++ #include using namespace std;int main() …………… . . .
OR

