用C语言输出图形 ********** ********* ******** ******* ****** ***** **** *** ** *
时间: 2023-11-25 21:49:53 浏览: 62
以下是用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;
}
```
输出结果为:
```
**********
*********
********
*******
******
*****
****
***
**
*
```
相关问题
用C语言输出以下图形 * *** ***** * *
以下是用C语言输出该图形的代码:
```c
#include <stdio.h>
int main() {
printf(" *\n");
printf(" ***\n");
printf("*****\n");
printf(" *\n");
printf(" *\n");
return 0;
}
```
输出结果为:
```
*
***
*****
*
*
```
用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 <= 4) {
b = 1;
while (b <= 4) {
if (b >= 5 - a) {
printf("*");
}
else {
printf(" "); }
b++;
}
printf("\n");
a++;
}
return 0;
}
```
输出结果为:
```
****
****
***
*
```
阅读全文