Translate the following for loop into a while loop:
for (int fe = 44; fe >= alDuran; fe /= 2) { chebu(); iccick(fe, 5); }
int fe = 44; while (fe >= alDuran) { fe /= 2; iccick(fe, 5); chebu(); }
Related puzzles: