Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
10
Task/Loops-Do-while/ALGOL-60/loops-do-while-1.alg
Normal file
10
Task/Loops-Do-while/ALGOL-60/loops-do-while-1.alg
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
'BEGIN' 'COMMENT' Loops DoWhile - Algol60 - 22/06/2018;
|
||||
'INTEGER' I;
|
||||
I:=0;
|
||||
LOOP:
|
||||
I:=I+1;
|
||||
OUTINTEGER(1,I);
|
||||
'IF' I=I'/'6*6 'THEN' 'GOTO' ENDLOOP;
|
||||
'GOTO' LOOP;
|
||||
ENDLOOP:
|
||||
'END'
|
||||
Loading…
Add table
Add a link
Reference in a new issue