练习5-3 数字金字塔 (15 分)

函数接口定义

void pyramid( int n );

其中n是用户传入的参数,为[1, 9]的正整数。要求函数按照如样例所示的格
式打印出n行数字金字塔。注意每个数字后面跟一个空格。

裁判测试程序样例

#include <stdio.h>
 
void pyramid( int n );
 
int main()
{
    
        
    int n;
 
    scanf("%d", &n);
    pyramid(n);
 
    return 0;
}
 
/* 你的代码将被嵌在这里 */

输入样例

5

输出样例

    1 
   2 2 
  3 3 3 
 4 4 4 4 
5 5 5 5 5 

我的答案

void pyramid( int n ){
    
    
    int i,j;
    for(i=1; i<=n; i++){
    
    
        for(j=n-i; j>0; j--){
    
    
            printf(" ");
        }
        for(j=1; j<=i; j++){
    
    
            printf("%d ", i);
        }
        printf("\n");
    }
}

猜你喜欢

转载自blog.csdn.net/qq_43191910/article/details/104834179
今日推荐