RosettaCodeData/Task/Loops-While/Bc/loops-while.bc
2017-09-25 22:28:19 +02:00

5 lines
44 B
Text

i = 1024
while (i > 0) {
i
i /= 2
}