import java.io.*;
public class Arreglo{
public int[]Leer()throws IOException{
BufferedReader entrada=new BufferedReader(new InputStreamReader(System.in));
int A[]=new int[10];
for(int x=0;x<10;x++){
System.out.print("Escribe un numero"+x);
A
- =Integer.parseInt(entrada.readLine());
}
return A;
}
public int Pares(int A[]){
int B[]=new int[10];
int x=0, y;
for(y=0;y<10;y++){
if(A
B[y++]=A
}
return (x);
}
public void Imprimir(int []
{
System.out.println("arreglo de los pares es:"+B);
}
}
import java.io.*;
public class Llamar{
public static void main(String []args)throws IOException{
Arreglo obk=new Arreglo();
int B[]=new int[10];
obk.Leer();
obk.Imprimir(
;
}
}
Ahora el problema que tengo es que solo me muestra un 0