题解 | #蛇形矩阵#

蛇形矩阵

https://www.nowcoder.com/practice/649b210ef44446e3b1cd1be6fa4cab5e

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int n = in.nextInt();
        int[][] arr = new int[n][n];
        arr[0][0] = 1;
        for (int i = 0; i < n; i++) {
            for (int j = 0, d = j + 2; j < n - i; j++) {
                if (i == 0 && j == 0) {
                    arr[i][j] = 1;
                } else if (i > 0 && j == 0) {
                    arr[i][j] = arr[i - 1][0] + i;
                } else {
                    arr[i][j] = arr[i][j - 1] + i + d++;
                }
                System.out.print(arr[i][j] + " ");
            }
            System.out.println();
        }
    }
}

#华为笔试#
全部评论

相关推荐

头像
11-06 10:58
已编辑
门头沟学院 嵌入式工程师
双非25想找富婆不想打工:哦,这该死的伦敦腔,我敢打赌,你简直是个天才,如果我有offer的话,我一定用offer狠狠的打在你的脸上
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务