RosettaCodeData/Task/Loops-While/Bc/loops-while.bc
2023-07-01 13:44:08 -04:00

5 lines
44 B
Text

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