题解 | #金字塔图案#

金字塔图案

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

#include<stdio.h>
int main()
{
    int a;
    while(scanf("%d",&a)!=EOF)
    {
        for(int i=1;i<=a;i++)
        {
            for(int j=a;j>i;j--)
            {
                printf(" ");
            }
            for(int x=1;x<=i;x++)
            {
                printf("* ");
            }
            printf("\n");
        }
    }
    return 0;
}
全部评论

相关推荐

totoroyyw:千年老妖😂
投递华为等公司10个岗位
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务