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

本题要求实现函数输出n行数字金字塔。

函数接口定义:

void pyramid( int n );

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

意每个数字后面跟一个空格。

裁判测试程序样例:

#include 

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

思路:
首先先用for循环行数,中间再添加for循环执行实现数字前的空格,其次添加for循环实现单层的数字重复出现,最后判定特例当在第一行的时候直接执行换行。

AC代码:

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

你可能感兴趣的:(PTA)