Ejemplo n.º 1
0
 static void Main(string[] args)
 {
     Justifier x = new Justifier();
     string[] a = { "BOB", "TOMMY", "JIM" };
     Console.WriteLine(x.justify(a));
     Console.ReadLine();
 }
Ejemplo n.º 2
0
        static void Main(string[] args)
        {
            Justifier x = new Justifier();

            string[] a = { "BOB", "TOMMY", "JIM" };
            Console.WriteLine(x.justify(a));
            Console.ReadLine();
        }