예제 #1
0
 static void Main()
 {
     Permute p = new Permute();
     string c = Console.ReadLine();
     char[] c2 = c.ToCharArray();
     /*calling the permute*/
     p.setper(c2);
 }
예제 #2
0
        static void Main()
        {
            Permute p = new Permute();
            string  c = "sagiv";

            char [] c2 = c.ToCharArray();
            /*calling the permute*/
            p.setper(c2);
        }