Created
July 13, 2012 19:04
-
-
Save jlmferreira/3106738 to your computer and use it in GitHub Desktop.
O programa testa uma palavra, separa seus caracteres, transforma em um número correspondente (a=1,b=2,c=3,A=27,B=28...etc), soma o resultado e diz se é primo ou não
This file contains 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
import java.util.Scanner; | |
public class Primos { | |
/** | |
* @param args | |
*/ | |
public static void main(String[] args) { | |
// TODO Auto-generated method stub | |
int total = 0; | |
String palavra = null; | |
Scanner scanner = new Scanner(System.in); | |
palavra = scanner.next(); | |
for (int cont = 0; cont < palavra.length();cont++){ | |
char tempVar = palavra.charAt(cont); | |
if (Integer.valueOf(tempVar)<97){ | |
total += Integer.valueOf(tempVar) - 38; | |
}else { | |
total += Integer.valueOf(tempVar) - 96; | |
} | |
} | |
int resto = 1; | |
int divisor = 2; | |
if (total==1){ | |
System.out.print("não é primo"); | |
}else{ | |
while (resto != 0){ | |
resto = total % divisor; | |
divisor++; | |
} | |
if (resto == 0 && divisor-1 == total){ | |
System.out.print("é primo"); | |
}else{ | |
System.out.print("não é primo"); | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment