Esempio n. 1
0
 static void Main(string[] args)
 {
     PaperFold x = new PaperFold();
     int[] a = { 2528, 3911 };
     int[] b = { 4079, 639 };
     Console.WriteLine(x.numFolds(a,b));
     Console.ReadLine();
 }
Esempio n. 2
0
        static void Main(string[] args)
        {
            PaperFold x = new PaperFold();

            int[] a = { 2528, 3911 };
            int[] b = { 4079, 639 };
            Console.WriteLine(x.numFolds(a, b));
            Console.ReadLine();
        }