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-7 平行四边形(右)(递归).c

10 lines
207 B
C
Raw Normal View History

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