monthlyOrder() public method

public monthlyOrder ( int sales, int daysAvailable ) : int
sales int
daysAvailable int
return int
Esempio n. 1
0
 static void Main(string[] args)
 {
     Inventory x = new Inventory();
     int[] a = { 3179, 502, 2481, 8901 };
     int[] b = { 26, 27, 28, 29 };
     Console.WriteLine(x.monthlyOrder(a,b));
     Console.ReadLine();
 }
Esempio n. 2
0
        static void Main(string[] args)
        {
            Inventory x = new Inventory();

            int[] a = { 3179, 502, 2481, 8901 };
            int[] b = { 26, 27, 28, 29 };
            Console.WriteLine(x.monthlyOrder(a, b));
            Console.ReadLine();
        }