6-21 数字金字塔
分数 15
全屏浏览题目
切换布局
作者 C课程组
单位 浙江大学
本题要求实现函数输出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
代码长度限制
16 KB
时间限制
400 ms
内存限制
64 MB
参考答案
void pyramid( int n ){
int t=n,g=1;
for(int i=1;i<=n;i++){
for(int j=1;j<t;j++){
printf(" ");
}
t--;
for(int j=1;j<=g;j++){
printf("%d ",i);
}
g++;
printf("\n");
}
}