Advertisement
RafaelFascio

TP0 Ejercicio 4

Aug 25th, 2020
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.27 KB | None | 0 0
  1. import java.util.*;
  2. public class TP0_Punto4 {
  3.    
  4.     ;
  5.     public static void main(String[] args) {
  6.         // TODO Auto-generated method stub
  7.         Scanner obtenerNumero = new Scanner(System.in);
  8.         boolean bandera1=true;
  9.         boolean bandera2=true;
  10.         int contador,I,numero;
  11.         contador = 0;
  12.         I = 0;
  13.         while(bandera1==true) {
  14.         System.out.print("Ingresa un numero: ");
  15.         numero = obtenerNumero.nextInt();
  16.         bandera2=true;
  17.         bandera2=verificarPositivo(numero, bandera2);
  18.         if (bandera2==true) {
  19.             verificarPrimo(contador, I, numero);
  20.             bandera1=false;
  21.         }
  22.        
  23.         }
  24.         }
  25.    
  26.  
  27.    
  28.    
  29.     public static  boolean verificarPositivo(int numero, boolean bandera) {
  30.         if (numero<=0) {
  31.             System.out.print("El número ingresado es negativo...");
  32.             bandera=false;
  33.      
  34.          
  35.         }return bandera;
  36.     }
  37.     public static void verificarPrimo(int contador, int I, int numero) {
  38.         for(I = 1; I <= numero; I++)
  39.         {
  40.             if((numero % I) == 0)
  41.             {
  42.                 contador++;
  43.             }
  44.         }
  45.  
  46.         if(contador <= 2)
  47.         {
  48.             System.out.println("El numero es primo");
  49.         }else{
  50.             System.out.println("El numero no es primo");
  51.         }
  52.     }
  53.  
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement