题解 | #翻转金字塔图案#

翻转金字塔图案

http://www.nowcoder.com/practice/c4775776e4464537bfb6a5ba37c596c6

import java.util.Scanner;
import java.util.Collections;
public class Main{
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        while(scan.hasNextInt()) {
            int num = scan.nextInt();
            for(int i = 0; i < num; i++) {
                System.out.println(String.join("", Collections.nCopies(i, " ")) + 
                                 String.join("", Collections.nCopies(num - i, "* ")));
            }
        }
    }
}


全部评论

相关推荐

也许是天气_:实习这块全是假大空像AI生成的,没有实际内容。要体现出难点、亮点、解决问题的过程
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务