domingo, 21 de agosto de 2011

PRIMOs


public class Primos{
private int numero;
public Primos(int n ) {
this.numero=n;

}
public String getPrimos(int n){
int c=0;
int i;

for(i=2; i<=n; i++){


if(n%i==0){
c=c+1;
}
if(c>2){
c=n;
}
if(c==1){
return("es primo");
}

else{
return ("el numero no es primo");
}

}

return("getPrimos");
 
      }      
}
INICIO;

import java.io.*;
public class Inicio {


public static void main(String[]args)throws IOException {
BufferedReader lectura = new BufferedReader(new InputStreamReader(System.in));

int n;
Primos  p1= new Primos (2);

System.out.println("Ingrese numero 1: ");
n = Integer.parseInt(lectura.readLine());
System.out.println(p1.getPrimos(3));
}
}


No hay comentarios:

Publicar un comentario