8 lines
122 B
Text
8 lines
122 B
Text
for i=1:10
|
|
printf("%2d ",i)
|
|
if modulo(i,5)~=0 then
|
|
printf(", ")
|
|
continue
|
|
end
|
|
printf("\n")
|
|
end
|