예제 #1
0
        static void Main(string[] args)
        {
            Console.WriteLine("This program tests to see if your shuttle has enough crew members and fuel to take off");
            SpaceShuttle s = new SpaceShuttle();

            s.Launch();
        }
예제 #2
0
        static void Main(string[] args)
        {
            SpaceShuttle shuttle = new SpaceShuttle();

            Console.WriteLine(shuttle.Launch());

            Console.ReadLine();
        }