How to resolve the algorithm Sieve of Eratosthenes step by step in the VBA programming language
Published on 12 May 2024 09:40 PM
How to resolve the algorithm Sieve of Eratosthenes step by step in the VBA programming language
Table of Contents
Problem Statement
The Sieve of Eratosthenes is a simple algorithm that finds the prime numbers up to a given integer.
Implement the Sieve of Eratosthenes algorithm, with the only allowed optimization that the outer loop can stop at the square root of the limit, and the inner loop may start at the square of the prime just found. That means especially that you shouldn't optimize by using pre-computed wheels, i.e. don't assume you need only to cross out odd numbers (wheel based on 2), numbers equal to 1 or 5 modulo 6 (wheel based on 2 and 3), or similar wheels based on low primes. If there's an easy way to add such a wheel based optimization, implement it as an alternative version.
Let's start with the solution:
Step by Step solution about How to resolve the algorithm Sieve of Eratosthenes step by step in the VBA programming language
Source code in the vba programming language
Sub primes()
'BRRJPA
'Prime calculation for VBA_Excel
'p is the superior limit of the range calculation
'This example calculates from 2 to 100000 and print it
'at the collum A
p = 100000
Dim nprimes(1 To 100000) As Integer
b = Sqr(p)
For n = 2 To b
For k = n * n To p Step n
nprimes(k) = 1
Next k
Next n
For a = 2 To p
If nprimes(a) = 0 Then
c = c + 1
Range("A" & c).Value = a
End If
Next a
End Sub
You may also check:How to resolve the algorithm Box the compass step by step in the Run BASIC programming language
You may also check:How to resolve the algorithm Truncatable primes step by step in the zkl programming language
You may also check:How to resolve the algorithm Tau number step by step in the Clojure programming language
You may also check:How to resolve the algorithm Sorting algorithms/Strand sort step by step in the OCaml programming language
You may also check:How to resolve the algorithm Sequence: smallest number greater than previous term with exactly n divisors step by step in the 11l programming language