Skip to content

Instantly share code, notes, and snippets.

@lawrencefmm
Last active May 16, 2019 17:09
Show Gist options
  • Save lawrencefmm/3bde7fb962d056acca8a1a552f845c46 to your computer and use it in GitHub Desktop.
Save lawrencefmm/3bde7fb962d056acca8a1a552f845c46 to your computer and use it in GitHub Desktop.
bool checa_primalidade(int n)
{
for(int i = 2; 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