Airline ticket

Sign in to test your solution.
// Airline ticket program using System; class Submission { // ------------------------- // Subprograms // ------------------------- // Function to return truncated airport names static string airports(string departure, string arrival) { } // ------------------------- // Main program // ------------------------- public static void Main(string[] args) { Console.WriteLine(airports("Gatwick", "Amsterdam")); } }
You can submit as many times as you like. Only your latest submission will be taken into account.
Sign in to test your solution.