7 lines
69 B
Text
7 lines
69 B
Text
integer i;
|
|
|
|
i = 1024;
|
|
while (i) {
|
|
o_plan(i, "\n");
|
|
i /= 2;
|
|
}
|