返回

java-带降序数的嵌套for循环问题

发布时间:2022-06-14 11:44:39 332
# php

我正在想办法解决这个问题。我的目标是:

3 3 3 3 3

3 2 2 2 3

3 2 1 2 3

3 2 2 2 3

3 3 3 3 3

我有下面的代码,它给了我这个:

3 2 1

3 2 1

3 2 1

3 2

3

我想我已经很接近了,但有人能帮忙吗?

    System.out.print("Enter the length of the pattern size: ");
    int size = scan.nextInt();
    System.out.println();
    for (int row=size*2-1; row >= 1; row--) { 
        for (int col=size*2-1; col >= 1; col--) {
            if (col <= size && row >= size-col+1 )
                System.out.print(col + " ");
        }
        System.out.println();
    }
}

}

特别声明:以上内容(图片及文字)均为互联网收集或者用户上传发布,本站仅提供信息存储服务!如有侵权或有涉及法律问题请联系我们。
举报
评论区(1)
按点赞数排序
用户头像