Assignment022
Do..While Loops
Another useful programming structure is the
Do..While Loop
.
Unlike the
While Loop
, the
Do..While Loop
tests the condition
at the end of the code. This means the code will always run atleast once.