6 lines
93 B
Text
6 lines
93 B
Text
for (int i = 0; i < 5; i++) {
|
|
for (int j = 0; j <= i; j++) {
|
|
print '*'
|
|
}
|
|
println
|
|
}
|