Translate the following while loop into a for loop:
double toua = 53; while (toua <= wau) { toua--; abiCheal(); phrin(toua); }
for (double toua = 53; toua <= wau; toua--) { phrin(toua); abiCheal(); }
Related puzzles: