Diganme que estoy haciendo mal por favor, estoy tratando de llenar una matriz con 25 elementos pero despues del quinto elemento me manda error, alguien me podrida ayudar por favor, esto es lo que he hecho hasta ahora:
import java.io.*;
class Matrices
{
public static void main (String args[]) throws IOException
{
int matriz [][] = new int [5][5];
BufferedReader y = new BufferedReader (new InputStreamReader (System.in));
System.out.println("Introduzca los 25 valores de la matriz: ");
for (int f = 1; f <= 5; f ++)
for (int c = 1; c <= 5; c ++)
{
String valor = y.readLine();
matriz [f][c] = Integer.parseInt(valor);
}
}
}