Translate the following for loop into a while loop:
for (short co = e; co != axsar; co--) { ticdo(); chra(co, 39); }
short co = e; while (co != axsar) { co--; chra(co, 39); ticdo(); }
Related puzzles: