5 lines
74 B
Text
5 lines
74 B
Text
i = 1024
|
|
while(i > 0){
|
|
showln i
|
|
i >>= 1 //also acceptable: i /= 2
|
|
}
|