6 lines
72 B
Text
6 lines
72 B
Text
i = 1024
|
|
while (i > 0)
|
|
{
|
|
Print(i)
|
|
i = (i / 2).Floor()
|
|
}
|