Assignment 022
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 at least once.
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 at least once.