Beispiel #1
0
 static void Main(string[] args)
 {
     BigBurger x = new BigBurger();
     int[] a = { 2, 10, 12 };
     int[] b = { 15, 1, 15 };
     Console.WriteLine(x.maxWait(a,b));
     Console.ReadLine();
 }
Beispiel #2
0
        static void Main(string[] args)
        {
            BigBurger x = new BigBurger();

            int[] a = { 2, 10, 12 };
            int[] b = { 15, 1, 15 };
            Console.WriteLine(x.maxWait(a, b));
            Console.ReadLine();
        }