我需要为我的java赋值填写一个矩阵(表)。我不知道从哪里开始有人可以帮我设置一下。 谢谢
答案 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
每个数组中的单元格