Positivo_Negativo_Cero

Codigo.
package Ejercicioas_Tercer_Parcial;
/**
//Sarahy Cuautle Cruz
* Jhoana Ximena Ordaz Manzanares
//24/11/2014
//muestra 110 numreros enteros que se leen en el teclado 
 * y calcula cuales numrros som positivos, cuantod negativos y cuantos ceros.
//Grado:3 Grupo:D
*/
import java.util.*;
public class Positivo_Negativo_Cero {
 
public static void main(String[] args) {
Scanner sc = new Scanner (System.in);
int [] numeros= new int [10];
//contadores
int pos =0, neg=0, cero=0;
//leemos los valores por teclado y los guardamos en array
System.out.println ("Lectura de los elementos de array");
for ( int A = 0; A < numeros.length; A++){
System.out.println  ("Numero [ " + A + "] = ");
numeros [A] = sc.nextInt (); }
//se recorrre el array para contar positivis, negativos y ceros.
for (int A=0; A<numeros.length; A++) {
if (numeros [A]>0){
pos++;
}
else if (numeros [A]< 0){
neg++;
}
else { cero++; }}
//mostrar  resultados
System.out.println ("Positivo:" + pos);
System.out.println("Negativo:" + neg);
System.out.println("Cero:" + cero);
}
 
}
 
Salida.
 
Lectura de los elementos de array
Numero [ 0] = 
1
Numero [ 1] = 
-9
Numero [ 2] = 
0
Numero [ 3] = 
25
Numero [ 4] = 
-98
Numero [ 5] = 
0
Numero [ 6] = 
-9
Numero [ 7] = 
12
Numero [ 8] = 
56
Numero [ 9] = 
-10
Positivo:4
Negativo:4
Cero:2