之前看到了这样的一条题目,给定一个正整数n,要求输出边长为n的矩阵。
例如:当正整数n为3时,输出应该为
1 2 3
8 9 4
7 6 5
想了一会儿,觉得这道题考查的知识点是数组,利用二维数组来进行输出。
public class Solution {
public static void main(String[] args){
int n = 4; //正整数N的值
int[][] Matrix = new int[n][n];
int row = 0; //每一圈最左上角的坐标(row, row)
int column = n-1; //每一圈最右下角的坐标(column, column)
int count = 0;
//蛇形矩阵的生成顺序是上-右-下-左
//一共需要循环2n-1次
if(n%2 != 0){
Matrix[n/2][n/2] = n*n;
}
while(row < column){
//上
for(int i = row; i <= column; i++){
Matrix[row][i] = ++count;
}
//右
for(int i = row + 1; i <= column; i++){
Matrix[i][column] = ++count;
}
//下
for(int i = column - 1; i >= row; i--){
Matrix[column][i] = ++count;
}
//左
for(int i =