// Do while example
class DoWhileTest
{
public static void main( String args[ ] )
{
int i = 1; // 1. Initialization
do
{
System.out.print( " " + i );
i++; // 3. Increment.
}while ( i <= 5 ); // 2. Test / Condition
}
}
Output:1 2 3 4 5
// Do while example
class DoWhileTest
{
public static void main( String args[ ] )
{
int i = 1; // 1. Initialization
do
{
System.out.print( " " + i );
i++; // 3. Increment.
}while ( i <= 5 ); // 2. Test / Condition
}
}
Output:1 2 3 4 5