Skip to content

Instantly share code, notes, and snippets.

@tmosest
Created January 24, 2017 23:04
Show Gist options
  • Save tmosest/00356e61123ca3fd6e2e162e70bd10ee to your computer and use it in GitHub Desktop.
Save tmosest/00356e61123ca3fd6e2e162e70bd10ee to your computer and use it in GitHub Desktop.
Sieve.java
public static boolean isPrime(int n)
{
for(int i = 0; i * i <= n; i++)
if(n % i == 0)
return false;
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment