Advertisement
FacuValverdi

EdD-TP0-PTO4

Aug 30th, 2022
1,111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.76 KB | None | 0 0
  1. package EJ4;
  2. import java.util.Scanner;
  3.  
  4. public class eje4 {
  5.  
  6.     public static boolean esPrimo(int numero) {
  7.         int aux=0;
  8.         for(int i=1;i<=numero/2;i++) {
  9.             if((numero%i)==0) {
  10.                 aux+=1;
  11.             }
  12.         }
  13.         if(aux>1) {
  14.             return false;
  15.         }else {
  16.             return true;
  17.         }  
  18.     }
  19.    
  20.     public static void main(String[] args) {
  21.         // TODO Auto-generated method stub
  22.         int num;
  23.         do {
  24.             Scanner op=new Scanner(System.in);
  25.             System.out.println("---¿EL NUMERO ES COMPUESTO O NO? ----");
  26.             System.out.println("-Ingrese un numero positivo: ");
  27.             num=op.nextInt();
  28.         }while(num<0);
  29.         if(esPrimo(num)) {
  30.             System.out.println("El numero ingresado: "+num+" NO es COMPUESTO.");
  31.         }else {
  32.             System.out.println("El numero ingresado "+num+" es COMPUESTO.");
  33.         }
  34.  
  35.     }
  36.  
  37. }
  38.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement