Created
January 19, 2018 01:51
-
-
Save milon/b17655f42647717a79c0cc26334400f7 to your computer and use it in GitHub Desktop.
Prime Number
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
| //Prime number check | |
| //Author: Milon | |
| bool isPrime(int num){ | |
| if(num<2) | |
| return false; | |
| if(num==2) | |
| return true; | |
| if(num%2==0) | |
| return false; | |
| for(int i=3;i<num;i+=2) | |
| if(num%i==0) | |
| return false; | |
| return true; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment