RosettaCodeData/Task/Loops-While/Simula/loops-while.simula
2023-07-01 13:44:08 -04:00

9 lines
96 B
Text

begin
integer i;
i:=1024;
while i>0 do
begin
outint(i,5);
i:=i//2-1
end
end