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
|
#include <iostream>
using namespace std;
void SeatingMenu (int);
void FirstClassSeating (int [], int);
void CoachSeating (int[], int);
void BoardingPass (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;
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 < 6)
{
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);
if (i == 6)
cout << "There are no more first class seats available" << endl;
}
if (choice == 2)
CoachSeating (seats, i);
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)
{
int firstclass;
seats[i] = 1;
cout << "You have been booked a first class seat" << endl;
}
void CoachSeating(int seats [], int i)
{
seats[i] = 1;
cout << "You have been booked a coach seat" << endl;
}
| |