do statementwhile (condition);
statement
condition
do while
Example In the following example, the do loop iterates at least once and reiterates until i is no longer less than 5. do { i+=1 print(i);while (i<5);
do
do { i+=1 print(i);while (i<5);
Last Updated: 10/31/97 12:29:59