1. 程式人生 > >練習5-3 數字金字塔(15 分)

練習5-3 數字金字塔(15 分)

本題要求實現函式輸出n行數字金字塔。

函式介面定義:

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,k,m;
	m=n;
	for (i=1;i<=m;i++){
		for(j=m-i;j>0;j--)
		printf(" ");
		for(k=1;k<=i;k++)
		{
			printf("%d ",i);
		}	
	printf("\n");
	}
}