6 lines
61 B
Mathematica
6 lines
61 B
Mathematica
|
|
i = 1024;
|
||
|
|
while (i > 0)
|
||
|
|
disp(i);
|
||
|
|
i = floor(i/2);
|
||
|
|
end
|