填写java中的矩阵

时间:2014-11-23 21:34:13

标签: java multidimensional-array

我需要为我的java赋值填写一个矩阵(表)。我不知道从哪里开始有人可以帮我设置一下。 谢谢

2 个答案:

答案 0 :(得分:3)

int [][] matrix = new int[10][20];
for(int i = 0; i < 10; i++) {
    for(int j = 0; j < 20; j++) {
        // read information from somewhere
        matrix[i][j] = information;
    }
}

答案 1 :(得分:0)

int [][] arr = new int[x][y];
for(int i = 0; i < x; i++) {        // it will run you through the lines 
    for(int j = 0; j < y; j++) {    // this will run you through each cell in the raw selected
        arr[i][j] = <the thing you want to fill here> ;
    }
}

您可以将矩阵视为数组 第一个 for将通过数组运行 for每个数组中的单元格