5 lines
89 B
Text
5 lines
89 B
Text
for (i = 1; i < 11; i++) {
|
|
print i
|
|
println and continue if i % 5 == 0
|
|
print ", "
|
|
}
|