示例#1
0
        public static void SieveEratosthenes(int n)
        {
            Algorithm_Eratosthenes algorithm_Eratosthenes = new Algorithm_Eratosthenes();

            Console.WriteLine("SieveEratosthenes to {0}:", n);

            Console.WriteLine(string.Join(",", algorithm_Eratosthenes.Algorithm(n)));
        }