6 lines
72 B
Text
6 lines
72 B
Text
|
|
n := 1024;
|
||
|
|
while n > 0 loop
|
||
|
|
print( n );
|
||
|
|
n := n div 2;
|
||
|
|
end loop;
|