c语言用printf输出* *** *****
时间: 2023-11-25 12:50:15 浏览: 90
以下是两种C语言用printf输出* *** *****的例子:
1. 直接打印
```c
#include <stdio.h>
#include <stdlib.h>
int main() {
printf("*\n");
printf("***\n");
printf("*****\n");
system("pause");
return 0;
}
```
2. 使用循环控制输出
```c
#include <stdio.h>
#include <stdlib.h>
#include <Windows.h>
int main() {
int a, b;
a = 1;
system("color f5"); //f-亮白色 底景 ;5-紫色前景
while (a <= 5) {
b = 1;
while (b<=a) {
printf("*");
b++;
}
printf("\n");
a++;
}
return 0;
}
```
相关问题
用c语言输出*****
以下是使用C语言输出五个星号的代码:
```c
#include <stdio.h>
int main() {
printf("*****\n");
return 0;
}
```
运行该程序后,会输出 `*****`。
用c语言输出 * * * * * * * * * * * * *
您好!根据您的要求,以下是用C语言输出指定字符串的代码:
```c
#include <stdio.h>
int main() {
printf(" *\n");
printf(" * * *\n");
printf("* * * * *\n");
printf(" * * *\n");
printf(" *\n");
return 0;
}
```
输出结果如下:
```
*
* * *
* * * * *
* * *
*
```
希望能够解决您的问题。
阅读全文