7 lines
73 B
Text
7 lines
73 B
Text
|
|
i = 1024
|
||
|
|
while(i > 0)
|
||
|
|
{
|
||
|
|
show_message(string(i))
|
||
|
|
i /= 2
|
||
|
|
}
|