1
0
mirror of https://github.com/renbaoshuo/202401-programming-assignments.git synced 2024-11-23 15:48:42 +00:00
202401-programming-assignments/【实践课内】11.函数2/6-4 空心的数字金字塔.md

44 lines
706 B
Markdown
Raw Normal View History

2024-11-22 08:22:46 +00:00
# 6-4 空心的数字金字塔
本题要求实现一个函数输出n行空心的数字金字塔。
### 函数接口定义:
```c++
void hollowPyramid( int n );
```
其中`n`是用户传入的参数,为[1, 9]的正整数。要求函数按照如样例所示的格式打印出`n`行空心的数字金字塔,请注意,最后一行的第一个数字前没有空格。
### 裁判测试程序样例:
```c++
#include <stdio.h>
void hollowPyramid ( int n );
int main()
{
int n;
scanf("%d", &n);
hollowPyramid ( n );
return 0;
}
/* 你的代码将被嵌在这里 */
```
### 输入样例:
```in
5
```
### 输出样例:
```out
1
2 2
3 3
4 4
555555555
```