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

翻转金字塔图案

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

#include <stdio.h>

int main()
{
    int n=0;
    while((scanf("%d",&n))!=EOF)
    {
        int m=n,z=0;
        for(int i=0;i<n;i++)
        {
            for(int k=z;k>0;k--)
            {
                printf(" ");
            }
            for(int j=m;j>0;j--)
            {
                printf("* ");
            }
            printf("\n");
            z++;
            m--;
        }
    }
    return 0;
}

全部评论

相关推荐

一名愚蠢的人类:多少games小鬼留下了羡慕的泪水
投递荣耀等公司10个岗位
点赞 评论 收藏
分享
评论
1
收藏
分享
牛客网
牛客企业服务