Data update
This commit is contained in:
parent
4bb20c9b71
commit
cbaf4c4b64
12390 changed files with 318560 additions and 27248 deletions
12
Task/Loops-Do-while/ALGOL-60/loops-do-while-3.alg
Normal file
12
Task/Loops-Do-while/ALGOL-60/loops-do-while-3.alg
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
COMMENT Loops/Do-while;
|
||||
|
||||
BEGIN
|
||||
INTEGER i;
|
||||
i := 0;
|
||||
REPEAT
|
||||
i := i + 1;
|
||||
write(1, i);
|
||||
skip(1)
|
||||
UNTIL i MOD 6 = 0
|
||||
END
|
||||
FINISH
|
||||
Loading…
Add table
Add a link
Reference in a new issue