Este es una clase viejita que habia trabajado hace un tiempo, suma los datos ingresados.
Código Java:
Ver originalint Matriz[] = new int[3];
Scanner consola
= new Scanner
(System.
in); for (int x=0; x < Matriz.length; x++) {
System.
out.
println("Introduzca el elemento [" + x
+ ", ]"); Matriz[x] = consola.nextInt();
}
int tot=0;
for (int x=0; x < Matriz.length; x++) {
tot=tot+Matriz[x];
}
System.
out.
println ("total : " + tot
);