Exemplo n.º 1
0
        /// <summary>
        /// By listing the first six prime numbers: 2, 3, 5, 7, 11, and 13, we can see that the 6th prime is 13.
        /// What is the 10 001st prime number?
        /// </summary>
        static void Euler7()
        {
            var result = new PrimeNumberGenerator().GetNthPrime(10001);

            Console.WriteLine("The result is: {0}", result);
            Console.ReadLine();
        }
Exemplo n.º 2
0
        /// <summary>
        /// By listing the first six prime numbers: 2, 3, 5, 7, 11, and 13, we can see that the 6th prime is 13.
        /// What is the 10 001st prime number?
        /// </summary>
        static void Euler7()
        {
            var result = new PrimeNumberGenerator().GetNthPrime(10001);

            Console.WriteLine("The result is: {0}", result);
            Console.ReadLine();
        }
Exemplo n.º 3
0
        /// <summary>
        /// The sum of the primes below 10 is 2 + 3 + 5 + 7 = 17.
        /// Find the sum of all the primes below two million.
        ///
        /// TODO Optimisation Candidate
        /// </summary>
        private static void Euler10()
        {
            const int twoMillion = 2000000;
            var       result     = new PrimeNumberGenerator().SumToPrimeLessThan(twoMillion);

            Console.WriteLine("The result is: {0}", result);
            Console.ReadLine();
        }
Exemplo n.º 4
0
        /// <summary>
        /// The sum of the primes below 10 is 2 + 3 + 5 + 7 = 17.
        /// Find the sum of all the primes below two million.
        /// 
        /// TODO Optimisation Candidate
        /// </summary>
        private static void Euler10()
        {
            const int twoMillion = 2000000;
            var result = new PrimeNumberGenerator().SumToPrimeLessThan(twoMillion);

            Console.WriteLine("The result is: {0}", result);
            Console.ReadLine();
        }
 public void Setup()
 {
     _gen = new PrimeNumberGenerator();
 }
 public void Setup()
 {
     _gen = new PrimeNumberGenerator();
 }