Do While

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

Example 1