static void Main(string[] args)
        {
            var test1 = new Test(20);

            Console.WriteLine();
            var test2 = new Test();

            Console.WriteLine();
            // 2 + 4 + 6 + 8 + 10 = 30
            var SumAp = new SumAp(2, 2, 5);

            Console.WriteLine();
            var Floyd = new Floyd(10);
        }
예제 #2
0
 public static void SumApTest()
 {
     var SumAp = new SumAp(2, 2, 5);
 }