DEV Community

JEGADESHWARAN B
JEGADESHWARAN B

Posted on

do-while in Java

Initial

The do-while loop executes at least once.
It checks the condition after execution.

Depth

It is an exit-controlled loop.
It guarantees one execution.

More Depth

Useful when the body must run before checking condition.

Final

The do-while loop ensures at least one execution.

Top comments (0)