Ver Mensaje Individual
  #1 (permalink)  
Antiguo 15/10/2011, 02:18
martin0290
 
Fecha de Ingreso: octubre-2009
Mensajes: 84
Antigüedad: 15 años, 2 meses
Puntos: 0
Pregunta Arreglo bidimencional en java [Principiante]

Hola que tal, estoy haciendo un "Tablero" se podria decir en java. Lo quiero hacer con un arreglo bidimencional (matriz)

Lo hago de esta forma:

Código:
int notas[][] = new int[15][15]; 

    for(int i=0;i<=14;i++) {

        for (int j=0;j<=14;j++) {

            notas[i][j]=p;

            System.out.print( notas[i][j] + " " );
            
           
    }

    System.out.println();

    }
Mi matriz da asi:

Código:
0  1  2  3  4  5  6  7  8  9  10 11 12 13 14 
1  2  3  4  5  6  7  8  9  10 11 12 13 14 15 
2  3  4  5  6  7  8  9  10 11 12 13 14 15 16 
3  4  5  6  7  8  9  10 11 12 13 14 15 16 17 
4  5  6  7  8  9  10 11 12 13 14 15 16 17 18 
5  6  7  8  9  10 11 12 13 14 15 16 17 18 19 
6  7  8  9  10 11 12 13 14 15 16 17 18 19 20 
7  8  9  10 11 12 13 14 15 16 17 18 19 20 21 
8  9  10 11 12 13 14 15 16 17 18 19 20 21 22 
9  10 11 12 13 14 15 16 17 18 19 20 21 22 23 
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
Pero lo que quiero hacer es que valla en 25 en 25, es decir que arranque de 0 y luego se salte a 25 y luego a 50 etc... Tanto como filas y columnas. Esto como se haria?

No tengo mucha idea de estos arreglos bidimencionales, no los use nunca, si me tiren una ayuda les agradecería muchísimo