6 lines
96 B
C
6 lines
96 B
C
int i, j;
|
|
for (i = 1; i <= 5; i++) {
|
|
for (j = 1; j <= i; j++)
|
|
putchar('*');
|
|
puts("");
|
|
}
|