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(); }
static void Main(string[] args) { SpaceShuttle shuttle = new SpaceShuttle(); Console.WriteLine(shuttle.Launch()); Console.ReadLine(); }