fork(1) download
  1. import java.util.*;
  2.  
  3. class Ideone {
  4. public static void main(String []args) {
  5. Scanner sc = new Scanner(System.in);
  6. int n = sc.nextInt();
  7. try {
  8. System.out.println(primo(n) ? "Verdadeiro" : "Falso");
  9. } catch (Exception ex) {
  10. System.out.println(ex.getMessage());
  11. }
  12. }
  13. public static boolean primo(int n) throws Exception {
  14. if (n <= 0) {
  15. throw new Exception("Número não pode ser menor ou igual à zero!");
  16. }
  17. int contador = 0;
  18. for (int j = 1; j <= Math.sqrt(n); j++){
  19. if (n % j == 0) {
  20. contador++;
  21. if (contador == 2) {
  22. return false;
  23. }
  24. }
  25. }
  26. return true;
  27. }
  28. }
Success #stdin #stdout 0.06s 321344KB
stdin
-1

stdout
Número não pode ser menor ou igual à zero!