使用C语言输出以下图案。 * *** ***** ******* ***** *** *
时间: 2023-11-25 15:50:15 浏览: 70
以下是使用C语言输出该图案的代码:
```c
#include <stdio.h>
#include <stdlib.h>
#include <Windows.h>
int main() {
int a, b;
a = 1;
system("color f5"); //f-亮白色 底景 ;5-紫色前景
while (a <= 7) {
b = 1;
if (a <= 4) {
while (b <= 4 - a) {
printf(" ");
b++;
}
b = 1;
while (b <= 2 * a - 1) {
printf("*");
b++;
}
}
else {
while (b <= a - 4) {
printf(" ");
b++;
}
b = 1;
while (b <= 2 * (7 - a) - 1) {
printf("*");
b++;
}
}
printf("\n");
a++;
}
return 0;
}
```
阅读全文