mirror of
https://github.com/renbaoshuo/202401-programming-assignments.git
synced 2024-11-23 15:48:42 +00:00
10 lines
207 B
C
10 lines
207 B
C
|
void RtPara(int width, int height, char symbol) {
|
||
|
if (height <= 0 || width <= 0) return;
|
||
|
|
||
|
Show(height - 1, ' ');
|
||
|
Show(width, symbol);
|
||
|
Show(1, '\n');
|
||
|
|
||
|
RtPara(width, height - 1, symbol);
|
||
|
}
|