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