题解 | #金字塔图案#

金字塔图案

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

#include <stdio.h>

int main() {
    int a,i,j,b;
    while (scanf("%d", &a) != EOF) { // 注意 while 处理多个 case
        // 64 位输出请用 printf("%lld") to 

        for(i = 1; i <= a ; i ++)
        {
              for(j = 1; j <= a ; j ++)
          {
              if(j == a - i + 1)
              {
                for(b = 1; b <= i; b ++)
                {
                  printf("* "); 
                }
              }
              else 
              {
                printf(" ");
              }
              
          }
          printf("\n");
        }
    }
    return 0;
}

全部评论

相关推荐

hso_:哈哈哈哈哈哈我没offer一样在同一道题开喷了
投递深圳同为数码等公司10个岗位
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务