1
0
mirror of https://github.com/renbaoshuo/202401-programming-assignments.git synced 2024-12-16 15:44:39 +00:00

10 lines
207 B
C
Raw Normal View History

2024-11-22 17:14:26 +08:00
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);
}