Question: IN C++ Create a class called Passenger that represents passengers of an airline company. A passenger is defined using the following information: - Passenger ID

IN C++

Create a class called Passenger that represents passengers of an airline company. A passenger is defined using the following information:

- Passenger ID (int)

- Name (string)

- Address (string)

- Tel (string)

- Date of birth (of type Date from Q2)

 

Provide the following functions:

- A constructor that initializes the data members and provides default arguments.

- Access methods that return the value of the data members.

- Functions that change the address, tel., and date of birth of a passenger.

- A function that prints information about a passenger.

Test your class by dynamically creating two Passenger objects and calling on them the above functions.

Date of birth (of type Date from Q2)

class Date { public: Date(int=1,int=1,int=2000); //setting day,month,year void printDate()const; //print date to the screen void setDate(int,int,int); //setting day,month,year private: int day; int month; int year; };

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!