6 lines
96 B
Text
6 lines
96 B
Text
U8 i, j;
|
|
for (i = 1; i <= 5; i++) {
|
|
for (j = 1; j <= i; j++)
|
|
Print("*");
|
|
Print("\n");
|
|
}
|