1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
|
#include <iostream>
using namespace std;
void SeatingMenu (int);
void FirstClassSeating (int [], int &);
void CoachSeating (int[], int &);
void BoardingPass (int [], int, int);
void InputResponse (string);
int main ()
{
const int SIZE = 10;
int seats [SIZE] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
int choice, anotherseat;
int i=0;
cout << "Would you like to fly first class or coach?" << endl;
cout << "1. First Class" << endl << "2. Coach" << endl;
cout << "Enter your choice:" << endl;
cin >> choice;
SeatingMenu(choice);
if (choice == 1)
{
FirstClassSeating (seats, i);
while (i < 5)
{
cout << "Book another first class seat?" << endl;
cout << "1 = Yes" << endl << "2 = No" << endl;
cin >> anotherseat;
if (anotherseat == 1)
FirstClassSeating (seats, i);
if (anotherseat == 2)
BoardingPass (seats, i, SIZE);
}
if (i == 5)
{
cout << "There are no more first class seats available" << endl;
cout << "Would you like a coach seat instead?" << endl << "1 = Yes" << endl << "2 = No" << endl;
cin >> choice;
if (choice == 1)
CoachSeating (seats, i);
if (choice == 2)
BoardingPass (seats, i, SIZE);
}
while (i < 10)
{
cout << "Would you like to book another coach seat?" << endl << "1 = Yes" << endl << "2 = No" << endl;
cin >> anotherseat;
if (anotherseat == 1)
CoachSeating (seats, i);
if (anotherseat == 2)
BoardingPass (seats, i, SIZE);
if (i == 10)
{
cout << "There are no more available seats" << endl;
BoardingPass (seats, i, SIZE);
}
}
}
if (choice == 2)
{
CoachSeating (seats, i);
while (i < 5)
{
cout << "Book another coach seat?" << endl;
cout << "1 = Yes" << endl << "2 = No" << endl;
cin >> anotherseat;
if (anotherseat == 1)
CoachSeating (seats, i);
if (anotherseat == 2)
BoardingPass (seats, i, SIZE);
}
if (i == 10)
{
cout << "There are no more coach seats available" << endl;
cout << "Would you like a first class instead?" << endl << "1 = Yes" << endl << "2 = No" << endl;
cin >> choice;
if (choice == 1)
FirstClassSeating (seats, i);
if (choice == 2)
BoardingPass (seats, i, SIZE);
}
while (i < 10)
{
cout << "Would you like to book another first class seat?" << endl << "1 = Yes" << endl << "2 = No" << endl;
cin >> anotherseat;
if (anotherseat == 1)
FirstClassSeating (seats, i);
if (anotherseat == 2)
BoardingPass (seats, i, SIZE);
if (i == 10)
{
cout << "There are no more available seats" << endl;
BoardingPass (seats, i, SIZE);
}
}
}
return 0;
}
void SeatingMenu(int choice)
{
cout << "Choice: " << choice << endl;
if (choice == 1)
{
cout << "You have chosen a first class seat" << endl;
}
if (choice == 2)
{
cout << "You have chosen a coach seat" << endl;
}
}
void FirstClassSeating(int seats [], int & i)
{
seats[i] = 1;
cout << "You have been booked a first class seat" << endl;
i++;
}
void CoachSeating(int seats [], int & i)
{
seats[5] = 2;
cout << "You have been booked a coach seat" << endl;
i++;
}
void BoardingPass (int seats [], int i, int SIZE)
{
cout << "Boarding Pass" << endl << "___________________________________" << endl;
for (i = 0; i < SIZE; i++)
cout << seats[i] << endl;
}
|