英文:
Showing java.lang.ArrayIndexOutOfBoundsException: Index 2 out of bounds for length 2 in some test cases?
问题
static void exchangeColumns(int matrix[][])
{
int i;
int n = matrix[0].length;
for (i = 0; i < n; i++) {
int temp = matrix[i][0];
matrix[i][0] = matrix[i][n - 1];
matrix[i][n - 1] = temp;
}
}
英文:
Code:
static void exchangeColumns(int matrix[][])
{
int i;
int n = matrix[0].length;
for (i=0;i<n;i++){
int temp = matrix[i][0];
matrix[i][0] = matrix[i][n-1];
matrix[i][n-1] = temp;
}
}
答案1
得分: 1
你正在错误地迭代多维数组。请使用以下方法遍历您的数组。
for (int i = 0; i < matrix.length; ++i) {
for(int j = 0; j < matrix[i].length; ++j) {
System.out.println(matrix[i][j]); // 在此处您可以通过访问数组元素来放置您的逻辑
}
}
英文:
You are using a wrong way to iterate the multi-dimensional array. Please use the following way to iterate through your array.
for (int i = 0; i < matrix.length; ++i) {
for(int j = 0; j < matrix[i].length; ++j) {
System.out.println(matrix[i][j]); // Here you can place your logic by accessing the array elements
}
}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论