Arreglos
Arreglos
Arreglos
EN DOS LINEAS:
int x [ ] ;
x = new int [ 3 ] ;
String nomb[];
nomb=new String [ 4 ] ;
DECLARACION E ASIGNACION
EN DOS LINEAS:
int x [ ] [ ] ;
x = new int [ 3 ] [3 ] ;
String nomb[] [ ] ;
nomb=new String [ 4 ] [4 ] ;
DECLARACION E ASIGNACION