题解 | #正斜线形图案#

正斜线形图案

https://www.nowcoder.com/practice/61ef68d129534dfbb04b232e1244e447

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

            for (int i = 1; i <= inPutNum; i++) {

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

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

全部评论

相关推荐

不愿透露姓名的神秘牛友
07-24 13:36
点赞 评论 收藏
分享
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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