Beginning Java - Unit 4 Looping - Do While
The do-while loop The do-while loop is similar to the while loop, except that the test condition occurs at the end of the loop. This guarantees that the body of the loop always executes at least once. The format of the do-while loop is shown in the box at...