用C语言输出图形 ********** ********* ******** ******* ****** ***** **** *** ** *
时间: 2023-11-25 11:49:53 浏览: 59
C语言输出图形
以下是用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 <= 10) {
b = 10;
while (b >= a) {
printf("*");
b--;
}
printf("\n");
a++;
}
return 0;
}
```
输出结果为:
```
**********
*********
********
*******
******
*****
****
***
**
*
```
阅读全文