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