YAPC::EU 2018 Glasgow Update!
This commit is contained in:
parent
22f33d4004
commit
4e2d22a71d
1170 changed files with 15042 additions and 3047 deletions
10
Task/Loops-Do-while/ALGOL-60/loops-do-while.alg
Normal file
10
Task/Loops-Do-while/ALGOL-60/loops-do-while.alg
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
'BEGIN' 'COMMENT' Loops DoWhile - Algol60 - 22/06/2018;
|
||||
'INTEGER' I;
|
||||
I:=0;
|
||||
LOOP:
|
||||
I:=I+1;
|
||||
'IF' I=I'/'6*6 'THEN' 'GOTO' LAB;
|
||||
OUTINTEGER(1,I);
|
||||
'GOTO' LOOP;
|
||||
LAB:
|
||||
'END'
|
||||
Loading…
Add table
Add a link
Reference in a new issue