23/06/2015, 15:38
|
(Desactivado) | | Fecha de Ingreso: marzo-2012
Mensajes: 366
Antigüedad: 12 años, 9 meses Puntos: 31 | |
Respuesta: colocar en variable Prueba esto:
Código:
public static void main(String[] args) {
String[][] matriz = new String[5][5];
for (int i=0;i<=4;i++)
for (int j=0;j<=4;j++)
matriz[i][j]=Integer.toString(i)+Integer.toString(j);
for (int i=0;i<=4;i++){
for (int j=0;j<=4;j++)System.out.print(matriz[i][j]+" ");
System.out.println();
}
}
|