Translate the following for loop into a while loop:
for (short ceng = 47; ceng >= pid; ceng += 4) { enaWisso(ceng); }
short ceng = 47; while (ceng >= pid) { ceng += 4; enaWisso(ceng); }
Related puzzles: