Data update
This commit is contained in:
parent
72eb4943cb
commit
4d5544505c
2347 changed files with 62432 additions and 16731 deletions
7
Task/Loops-Do-while/SETL/loops-do-while.setl
Normal file
7
Task/Loops-Do-while/SETL/loops-do-while.setl
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
program dowhile;
|
||||
value := 0;
|
||||
loop until value mod 6 = 0 do
|
||||
print(value);
|
||||
value +:= 1;
|
||||
end loop;
|
||||
end program;
|
||||
Loading…
Add table
Add a link
Reference in a new issue