C语言输出以下图案 * * * * * * * * * * * * * * * * * * * *
时间: 2023-11-30 18:42:14 浏览: 110
C语言输出心型图案
5星 · 资源好评率100%
以下是C语言输出图案的代码:
```c
#include <stdio.h>
#include <stdlib.h>
#include <Windows.h>
int main() {
int a, b, c;
a = 1;
system("color f5"); //f-亮白色 底景 ;5-紫色前景
while (a <= 4) {
b = 1;
while (b <= a - 1) {
printf(" ");
b++;
}
c = 1;
while (c <= 5) {
printf("*");
c++;
}
printf("\n");
a++;
}
return 0;
}
```
输出结果为:
```
* * * * *
* * * * *
* * * * *
* * * * *
```
阅读全文