用c语言打印菱形
时间: 2024-01-21 08:17:19 浏览: 74
用C打印菱形星号.txt 最全面的方法
以下是用 C 语言打印菱形的示例代码:
```c
#include <stdio.h>
int main() {
int n, i, j, space = 1;
printf("Enter the number of rows: ");
scanf("%d", &n);
space = n - 1;
for (j = 1; j <= n; j++) {
for (i = 1; i <= space; i++)
printf(" ");
space--;
for (i = 1; i <= 2 * j - 1; i++)
printf("*");
printf("\n");
}
space = 1;
for (j = 1; j <= n - 1; j++) {
for (i = 1; i <= space; i++)
printf(" ");
space++;
for (i = 1; i <= 2 * (n - j) - 1; i++)
printf("*");
printf("\n");
}
return 0;
}
```
运行程序后,输入要打印的行数即可输出菱形。例如,输入 5,则输出如下:
```
*
***
*****
*******
*********
*******
*****
***
*
```
阅读全文