What Java loop structure always executes its loop body at least once?

Answer:

The do-while loop.

// This will always print out once, even though the loop condition will always fail.
do {

System.out.println("In the loop!");

} while(false);

First answer by Moobler. Last edit by Moobler. Contributor trust: 354 [recommend contributor recommended]. Question popularity: 1 [recommend question].