用循环语句打印出以下图案C语言 * *** ****** ********
时间: 2023-11-29 07:46:27 浏览: 91
c代码-用*号输出字母C的图案。
以下是两种C语言循环语句打印图案的方法:
1. while循环嵌套
```c
#include <stdio.h>
#include <Windows.h>
#include <stdlib.h>
int main() {
int a, b; //定义两个变量-a用来控制内循环;b用来控制外循环
char x = '*';
a = 1;
while (a <= 4) //外循环-大环境-while控制行数
{
b = 1;
while (b <= 2 * a - 1) //内循环(五脏六腑)-while控制输出*的个数-每五个为一行
{
printf("%c", x);
b++;
}
printf("\n");
a++;
}
system("pause");
return 0;
}
```
2. 直接打印
```c
#include <stdio.h>
#include <stdlib.h>
int main() {
printf("*\n");
printf("***\n");
printf("*****\n");
printf("********\n");
system("pause");
return 0;
}
```
阅读全文