6 lines
62 B
Text
6 lines
62 B
Text
|
|
var i = 1024;
|
||
|
|
while (i > 0) {
|
||
|
|
printf("%i\n", i);
|
||
|
|
i = i/2;
|
||
|
|
}
|