Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
9
Task/Loops-Continue/Icon/loops-continue-1.icon
Normal file
9
Task/Loops-Continue/Icon/loops-continue-1.icon
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
procedure main()
|
||||
every writes(x := 1 to 10) do {
|
||||
if x % 5 = 0 then {
|
||||
write()
|
||||
next
|
||||
}
|
||||
writes(", ")
|
||||
}
|
||||
end
|
||||
1
Task/Loops-Continue/Icon/loops-continue-2.icon
Normal file
1
Task/Loops-Continue/Icon/loops-continue-2.icon
Normal file
|
|
@ -0,0 +1 @@
|
|||
every writes(x := 1 to 10, if x % 5 = 0 then "\n" else ", ")
|
||||
Loading…
Add table
Add a link
Reference in a new issue