Created
November 6, 2012 21:48
-
-
Save andytill/4027819 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Math { | |
| public static boolean isPrime(final long number) { | |
| if (number == 2) | |
| return true; | |
| if (number < 2) | |
| return false; | |
| if(number % 2 == 0) | |
| return false; | |
| long maxCheck = (long) Math.sqrt(number); | |
| for (long i = 3; i <= maxCheck; i += 2) { | |
| if (number % i == 0) | |
| return false; | |
| } | |
| return true; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment