Skip to content

Instantly share code, notes, and snippets.

@rabiulcste
Created April 28, 2016 09:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rabiulcste/add74b8cf5cf5eead5bc977e439154ea to your computer and use it in GitHub Desktop.
Save rabiulcste/add74b8cf5cf5eead5bc977e439154ea to your computer and use it in GitHub Desktop.
bool isPrime(int n) {
if(n < 2) return false;
for(int i = 2; i < sqrt(n); i++)
if(n%i == 0) return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment