* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/*Inicializacion de un arreglo*/
/**
*
* @author ALUMNO
*/
public class ArregloIni {
public static void main(String[] args) {
//Inicializar arreglo
int [] miArreglo = {2,12,55,21};
System.out.println("miArreglo [0] = "+miArreglo[0]);
System.out.println("miArreglo [1] = "+miArreglo[1]);
System.out.println("miArreglo [2] = "+miArreglo[2]);
System.out.println("miArreglo [3] = "+miArreglo[3]);
}//fin de metodo main
}//fin clase
No hay comentarios:
Publicar un comentario