题解 | #反斜线形图案#

反斜线形图案

https://www.nowcoder.com/practice/7b066963c4eb4d188becd18c37dfe22d

public class Program {
    public static void Main() {
        string inPut;
        while ((inPut = System.Console.ReadLine()) != null) {
            int inPutNum = int.Parse(inPut);

            for (int i = 0; i < inPutNum; i++) {
                //打印空格
                for (int space = 0; space < i; space++)
                    System.Console.Write(" ");

                //打印*号
                System.Console.Write("*");

                //换行
                System.Console.WriteLine();
            }
        }
    }
}

全部评论

相关推荐

评论
点赞
收藏
分享

创作者周榜

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