Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
14
Task/Loops-Do-while/ALGOL-60/loops-do-while-2.alg
Normal file
14
Task/Loops-Do-while/ALGOL-60/loops-do-while-2.alg
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
begin
|
||||
|
||||
integer i;
|
||||
boolean another;
|
||||
i := 0;
|
||||
another := true;
|
||||
for i := i + 1 while another do
|
||||
begin
|
||||
outinteger(1,i);
|
||||
comment - repeat until i mod 6 = 0;
|
||||
if i = (i div 6) * 6 then another := false;
|
||||
end;
|
||||
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue