7 lines
111 B
Text
7 lines
111 B
Text
for(i = 0; i < 5; ++i)
|
|
{
|
|
str = ''
|
|
for (j = 0; j <= i; ++j)
|
|
str $= '*'
|
|
Print(str)
|
|
}
|