6 lines
88 B
Text
6 lines
88 B
Text
for (x; 0; x < 5)
|
|
{
|
|
for (y; 0; y <= x)
|
|
print("*");;
|
|
print("\n");
|
|
};
|