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 Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 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
```