Java Basic Tutorial
Java Advance Tutorial
do...while
Loop:The do...while
loop executes the code block at least once, regardless of the condition. The condition is evaluated after the code block executes.
do { // Code to execute } while (condition);