正文

C语言绘制星星图案代码示例: ```c #include void print_stars(int n) { int i, j, k; for (i = 1; i <= n; i++) { for (j = i; j < n; j++) { printf(" "); //