c语言用printf输出* *** *****
时间: 2023-11-25 22:50:15 浏览: 75
C 语言的输入和输出 在C编程中,printf()用于输出数据或显示数据 另一方面,scanf() 用于从用户获取输入值 整
以下是两种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;
}
```
阅读全文