Create a file yul.cpp with the main function that asks the user to enter the information to create two flight objects. Then use printinfo() and Airline () functions to display the flight and airline information. Afterward by using the equals (ction the following results are displayed: (Text in green is user input) What flight are you looking for? AC975 What is the destination? France What is the departure time? 1458 What flight are you looking for? DL521.J What is the destination? New York. What is the departure time? 8538. The two flights are: AC975 flight to France at 14:50, Air Canada DL521 flight to New York at 85:38, Delta Are the two flights to the same destination? No What flight are you looking for? AC975. What is the destination? France What is the departure time? 1458 What flight are you looking for? AC863.J What is the destination? France. what is the departure time? 1830 The two flights are: AC975 flight to France at 14:50, Air Canada AC863 flight to France at 85:38, Air Canada Are the two flights to the same destination? yes
Create a file yul.cpp with the main function that asks the user to enter the information to create two flight objects. Then use printinfo() and Airline () functions to display the flight and airline information. Afterward by using the equals (ction the following results are displayed: (Text in green is user input) What flight are you looking for? AC975 What is the destination? France What is the departure time? 1458 What flight are you looking for? DL521.J What is the destination? New York. What is the departure time? 8538. The two flights are: AC975 flight to France at 14:50, Air Canada DL521 flight to New York at 85:38, Delta Are the two flights to the same destination? No What flight are you looking for? AC975. What is the destination? France What is the departure time? 1458 What flight are you looking for? AC863.J What is the destination? France. what is the departure time? 1830 The two flights are: AC975 flight to France at 14:50, Air Canada AC863 flight to France at 85:38, Air Canada Are the two flights to the same destination? yes
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Question
Kindly Solve this C++ question as per the instructions. Thank you for your help!
Instructions:
1- Put the class definition in Flight.h and the implementation of the constructors and functions in Flight.cpp
Implement the Flight.h and Flight.cpp so that class Flight contains:
- 4 private instance variables: Name of data type string, which describe the three electric vehicle charger types (AC975, DL521, and AC863). Destination of data type string that shows the final destination of that flight. Hour and Minute of data type int that show the departure time.
- A default constructor which sets all of the numeric instance variables to zero and the String instance variables to null.
- A constructor with 4 parameters that sets the 4 instance variables to the corresponding values passed.
- Implement an accessor method for each information (Flight name, Flight destination, and Flight Time) that will return the value of the instance variable. For example, the getX() method for the instance variables Hour and Minute must be called getTime().
- Implement a mutator method for each instance variable that will assign to the instance variable to the value passed. For example, the setX() method for the instance variables Hour and minute must be called setTime().
- An equals function: two objects of type flight have a similar destination or not. If they have similar destination, this function returns a Boolean value true.
- An Airline function, which shows the airline operator of a flight based on the first two letters of its name:
1) For flight AC975, it shows "Air Canada".
2) For flight DL521, it shows "Delta" - A printinfo function which prints out the flight information in the following format:
(Name> flight to Destination> at <hour): (minute).
Expert Solution
This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
Step by step
Solved in 5 steps with 7 images
Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Recommended textbooks for you
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education