Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.*;
- public class TP0_Punto4 {
- ;
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- Scanner obtenerNumero = new Scanner(System.in);
- boolean bandera1=true;
- boolean bandera2=true;
- int contador,I,numero;
- contador = 0;
- I = 0;
- while(bandera1==true) {
- System.out.print("Ingresa un numero: ");
- numero = obtenerNumero.nextInt();
- bandera2=true;
- bandera2=verificarPositivo(numero, bandera2);
- if (bandera2==true) {
- verificarPrimo(contador, I, numero);
- bandera1=false;
- }
- }
- }
- public static boolean verificarPositivo(int numero, boolean bandera) {
- if (numero<=0) {
- System.out.print("El número ingresado es negativo...");
- bandera=false;
- }return bandera;
- }
- public static void verificarPrimo(int contador, int I, int numero) {
- for(I = 1; I <= numero; I++)
- {
- if((numero % I) == 0)
- {
- contador++;
- }
- }
- if(contador <= 2)
- {
- System.out.println("El numero es primo");
- }else{
- System.out.println("El numero no es primo");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement