コード例 #1
0
ファイル: Program.cs プロジェクト: Oscarbralo/TopBlogCoder
 static void Main(string[] args)
 {
     OnLineRank a = new OnLineRank();
     int[] x = { 6, 9, 8, 15, 7, 12 };
     Console.WriteLine(a.calcRanks(3,x));
     Console.ReadLine();
 }
コード例 #2
0
        static void Main(string[] args)
        {
            OnLineRank a = new OnLineRank();

            int[] x = { 6, 9, 8, 15, 7, 12 };
            Console.WriteLine(a.calcRanks(3, x));
            Console.ReadLine();
        }