6 lines
79 B
Text
6 lines
79 B
Text
for i = 0:1:4
|
|
for j = 0:1:i
|
|
printf("*");
|
|
endfor
|
|
printf("\n");
|
|
endfor
|