コード例 #1
0
ファイル: Program.cs プロジェクト: Oscarbralo/TopBlogCoder
 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();
 }