Airline Reservation
Airline Reservation
#include <string>
using namespace std;
const int MAX_SEATS = 20;
int main() {
string seats[MAX_SEATS];
int choice, seatNumber;
string passengerName;
switch (choice) {
case 1:
cout << "1. Economy Class" << endl;
cout << "2. Business Class" << endl;
int classChoice;
cin >> classChoice;
if (classChoice == 1) {
cout << "Enter seat number to book (0-9): ";