6 lines
58 B
Text
6 lines
58 B
Text
|
|
i=1024
|
||
|
|
while i>0
|
||
|
|
printf("%4d\n",i)
|
||
|
|
i=int(i/2)
|
||
|
|
end
|