6 lines
74 B
Text
6 lines
74 B
Text
var i := 1024;
|
|
|
|
while i > 0 do begin
|
|
PrintLn(i);
|
|
i := i div 2;
|
|
end;
|