Bueno logre errar con el problema, aqui os dejo como es para que sirva a futuro a alguno.
CitarBufferedReader teclado ;
teclado = new BufferedReader(new InputStreamReader(System.in));
int n,x;
int pos = 0;
int limite = 5;
for (int i = 1; i <= limite; i++)
{
System.out.print( " Ingrese numero: ");
x = Integer.parseInt(teclado.readLine());
if(x>0)
pos++;
}
System.out.println("La cantidad de positivos son: " + pos);
}}