7 lines
70 B
Text
7 lines
70 B
Text
|
|
mutable x = 1024;
|
||
|
|
while (x > 0)
|
||
|
|
{
|
||
|
|
WriteLine($"$x");
|
||
|
|
x /= 2;
|
||
|
|
}
|