Java Programming/Keywords/do
From Wikibooks, the open-content textbooks collection
do is a Java keyword.
It starts a do-while looping block. The do-while loop is functionally similar to the while loop, except the condition is evaluated AFTER the statement executes
Syntax:
do{
statement;
} while (condition);
For Example:
do
{
i++;
} while ( i < maxLoopIter );
See also:

