Exemplo n.º 1
0
 static void Step7937()
 {
     Console.WriteLine();
     Console.WriteLine("7937");
     int[] in7937w = { 1721, 2473, 0, 877, 1181, 491 };
     int[] in7937h = { 661, 449, 1879, 0, 1033, 3533 };
     int[] in7937c = { 11, 23, 1163, 7, 0, 1297 };
     int[] in7937d = { 7, 11, 109, 19, 127, 0 };
     for (int i = 0; i < in7937w.Length; i++)
     {
         try
         {
             String result = Lab05.Task7937(in7937w[i], in7937h[i], in7937c[i], in7937d[i]);
             Console.WriteLine(result);
         }
         catch (Exception e)
         {
             Console.WriteLine(e.Message);
         }
     }
 }