예제 #1
0
 static void Main(string[] args)
 {
     Decipher x = new Decipher();
     string[] a = { "RAZVLHAR KNW CNR",
       "HEA HNFMNSAR NFAK" };
     Console.WriteLine(x.decipher(a, "EORTPNFHSCDIWG"));
     Console.ReadLine();
 }
예제 #2
0
        static void Main(string[] args)
        {
            Decipher x = new Decipher();

            string[] a = { "RAZVLHAR KNW CNR",
                           "HEA HNFMNSAR NFAK" };
            Console.WriteLine(x.decipher(a, "EORTPNFHSCDIWG"));
            Console.ReadLine();
        }