Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
8
Task/Loops-While/XPL0/loops-while.xpl0
Normal file
8
Task/Loops-While/XPL0/loops-while.xpl0
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
code CrLf=9, IntOut=11;
|
||||
int I;
|
||||
[I:= 1024;
|
||||
while I>0 do
|
||||
[IntOut(0, I); CrLf(0);
|
||||
I:= I>>1; \(same as I/2 for positive I)
|
||||
];
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue