RosettaCodeData/Task/Loops-While/Scilab/loops-while.scilab

6 lines
58 B
Plaintext

i=1024
while i>0
printf("%4d\n",i)
i=int(i/2)
end