while ( Expression ) StatementToExecute
int z=0; // declare an integer z and initialize it to 0 while ( z < 100 ) // while z is less then 100 { z = z + 10; // add 10 to z }