In this programming, we will cover everything we have cover in our c++ programming including switch case, if/else, gotoxy coordination, do/while and system clear First, code for the header file stdafx.h: // stdafx.h : include file for standard system include files, // or project specific include files that are used frequently, but // are changed infrequently // #pragma once #include #include #include #include #include #include using namespace std; // TODO: reference additional headers your program requires here Name the main file anyhow you like. Programming codes for the main file below: // IntAirways.cpp : Defines the entry point for the console application. // #include "stdafx.h" void menu(); void main(); void load_flight1(); void load_flight2(); void load_flight3(); void generate_report(); void exit(); int i=0, y=0, x=0; //setup lools for element of parcels. int space1=0, space2=0, space3=0; // for calculating space left over // afte...