Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated sieve #16

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions JAVA/sieveerath
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

class SieveOfEratosthenes
{
void sieveOfEratosthenes(int n)
public void sieveOfEratosthenes(int n)
{
// Create a boolean array "prime[0..n]" and initialize
// all entries it as true. A value in prime[i] will
Expand All @@ -15,10 +15,10 @@ class SieveOfEratosthenes
for(int p = 2; p*p <=n; p++)
{
// If prime[p] is not changed, then it is a prime
if(prime[p] == true)
if(prime[p])
{
// Update all multiples of p
for(int i = p*p; i <= n; i += p)
for(int i = p*p; i <= n; i =i+2*p)
prime[i] = false;
}
}
Expand Down