Write a C program to print out the following pattern. * ** *** **** *****
时间: 2023-11-23 16:07:12 浏览: 130
c代码-编写程序输出下列图形: * *** ***** *******
以下是C语言程序,用于打印上述模式:
```c
#include <stdio.h>
int main() {
int i, j;
for (i = 1; i <= 5; i++) {
for (j = 1; j <= i; j++) {
printf("*");
}
printf("\n");
}
return 0;
}
```
阅读全文