Question
C++ program Create a class called Passenger that represents passengers of an airline company. A passenger is defined using the following information: - Passenger ID
C++ program
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.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started