从语言编程形成如下图形 * ** *** **** ***** ****** ******* ******** ********* **********
时间: 2023-12-07 08:03:37 浏览: 116
以下是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 = 1;
while (b <= a) {
printf("*");
b++;
}
printf("\n");
a++;
}
return 0;
}
```
阅读全文