i have a project in turbo c programming and this is the problem .. please help me by giving some source code in turbo c or java. but my knowledge in java is on java.io only .
Write a program that will assign passenger seats in an airplane. Assume a small airplane with seat numbering as follows: 1. A B C D 2. A B C D 3. A B C D 4. A B C D 5. A B C D 6. A B C D 7. A B C D
The program should display the seat pattern with an "X" marking the seats already assigned. For example, after the seats 1A, 2B and 4C are taken. The display should look like this:
1. X B C D 2. A X C D 3. A B C D 4. A B X D 5. A B C D 6. A B C D 7. A B C D
After displaying the seats available the programming prompts for the seats desired the user types in a seat, and then the display of available seats is updated. this continues until all seats are field or until the user signals that the program should end. If the user types in a seat is already assigned, the program should say that seat is occupied and ask for another choice .