c语言循环打印* *** ***** *** *
时间: 2023-11-25 22:51:30 浏览: 61
以下是C语言循环打印星号的代码:
```c
#include <stdio.h>
#include <stdlib.h>
int main() {
int i, j;
char x;
x = getchar();
for (i = 1; i <= 5; i++) {
for (j = 1; j <= 5; j++) {
if (i == 3 && j == 3) {
printf("%c", x);
} else if (i == j || i + j == 6) {
printf("%c", x);
} else {
printf(" ");
}
}
printf("\n");
}
system("pause");
return 0;
}
```
输出结果为:
```
*
***
*****
***
*
```
阅读全文