Question: using C++ don't use other than this. and follow the conditions written in the paper please if you can't leave it to who know .

 using C++ don't use other than this. and follow the conditions

using C++ don't use other than this. and follow the conditions written in the paper please if you can't leave it to who know . this is the third time i upload it please read carefully

In addition, you need to be able to illustrate line by line your algorithm using the example, answer the questions not only WHAT this line of code does, but WHY. You need to demonstrate not only understanding the algorithm but also realize what happens if we change some line of the code. Task Your task is to design a booking flight system. You should be able to add information about the flight (flight number, date, time, cost of the ticket, destination, type of the plane). Your program should save all the information in a useful data structure, and be able to output information about flight with a specified destination in first order by date, in second order by cost. The input data: 5 10, 10/05/19, 11:59, 103, Moscow, Boeing 707 7, 10/05/19, 22:05, 77, Moscow, Airbus 23 10, 7/04/19, 11:59, 55 Moscow, Boeing 109 65, 12/05/19, 13:00, 66, Novosibirsk, Airbus 23 8, 10/05/19, 10:30, 66, Moscow, Boeing 104 Moscow The output: 10, 7/04/19, 11:59, 55 Moscow, Boeing 109 8, 10/05/19, 10:30, 66, Moscow, Boeing 104 7, 10/05/19, 22:05, 77, Moscow, Airbus 23 10, 10/05/19, 11:59, 103, Moscow, Boeing 707 The format of input and output data can be a little bit changed for convince. Your solution should contain manually written functions, structures, classes and correct usage of all language structures we've learned: methods/functions - lists structures Your code should be designed correctly and we suggest you follow the code style of c++. Also, prepare 3 tests proving that your algorithm works correctly

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

To solve this problem we need to implement a flight booking system in C The program should store information about flights and allow retrieval of flights based on specified criteria destination date a... View full answer

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!