// Looping Control Structures // - block of code to be repeated fo a # of iteration // - for // pre-test // - while //pre-test // - do-while // post-test // if(expression) { // body; // } // while(expression) { // body of loop; // } // // while, do while // conditionally controlled // // for // count controlled