Skip to content

Instantly share code, notes, and snippets.

@wen-dell
Last active December 10, 2016 19:00
Show Gist options
  • Save wen-dell/4c5aac8dabfa017dcaa1342c85e88921 to your computer and use it in GitHub Desktop.
Save wen-dell/4c5aac8dabfa017dcaa1342c85e88921 to your computer and use it in GitHub Desktop.
Verificar se é primo
public class Primo {
public static boolean isPrimo(int numero){
if(numero == 0 || numero == 1){
return false;
}
for(int i = 2; i < numero/2; i++){
if(numero % i == 0){
return false;
}
}
return true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment