5 lines
98 B
Text
5 lines
98 B
Text
for (int i = 0; i < 5; i++)
|
|
{
|
|
for (int j = 1; j <= i; j++) io::print("*");
|
|
io::printn("*");
|
|
}
|