Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Do while loops are similar to for while loops but the condition is evaluated at
then end of each loop and not the beginingbeginning. So, even if the condition is false,
the instructions will still be evaluated once.

...