Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package EJ4;
- import java.util.Scanner;
- public class eje4 {
- public static boolean esPrimo(int numero) {
- int aux=0;
- for(int i=1;i<=numero/2;i++) {
- if((numero%i)==0) {
- aux+=1;
- }
- }
- if(aux>1) {
- return false;
- }else {
- return true;
- }
- }
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- int num;
- do {
- Scanner op=new Scanner(System.in);
- System.out.println("---¿EL NUMERO ES COMPUESTO O NO? ----");
- System.out.println("-Ingrese un numero positivo: ");
- num=op.nextInt();
- }while(num<0);
- if(esPrimo(num)) {
- System.out.println("El numero ingresado: "+num+" NO es COMPUESTO.");
- }else {
- System.out.println("El numero ingresado "+num+" es COMPUESTO.");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement